.session-list {
    margin-top: 20px;
}

.session {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.session:hover {
    background-color: #f0f0f0;
}

/* Simple modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; padding: 20px; width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.error-message {
    color: red;
    margin-top: 10px;
    font-size: 0.9rem;
}

#teamList {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
}

.team {
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.team:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.team-name {
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
}

.team-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    margin-top: 5px;
}

.team-logo {
    font-size: 1.4em; /* Adjust if using emoji/icons */
}

.team-count {
    font-style: italic;
    font-size: 0.95em;
}

.no-team-warning {
    padding: 15px;
    background-color: #ffeeee;
    border-radius: 8px;
    color: #cc0000;
    font-weight: bold;
    text-align: center;
}