/* ============================================================================
   СТИЛІ СПИСКУ - list.css
   ============================================================================ */

/* ============================================================================
   КОНТЕЙНЕР СПИСКУ
   ============================================================================ */

.clubs-section {
    padding: 20px 15px;
}

.clubs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 5px;
}

/* ============================================================================
   LIST ITEM
   ============================================================================ */

.list-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.list-item:hover {
    border-color: #1967d2;
    box-shadow: 0 3px 10px rgba(25, 103, 210, 0.15);
    transform: translateY(-1px);
}

.list-item.expanded {
    border-color: #1967d2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ============================================================================
   LIST ROW - GRID СІТКА
   ============================================================================ */

.list-row {
    display: grid;
    grid-template-columns: 85px 1fr 120px;
    gap: 12px;
    padding: 10px 14px;
    align-items: center;
}

/* ============================================================================
   КОЛОНКА 1: ID + ВІК (ПО ЦЕНТРУ)
   ============================================================================ */

.list-col-1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ID - ПО ЦЕНТРУ З ФОНОМ */
.list-id {
    font-size: 11px;
    font-weight: 700;
    color: #1967d2;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 4px 6px;
    background: #e8f0fe;
    border-radius: 4px;
    transition: all 0.2s;
}

/* Вік - ПО ЦЕНТРУ */
.list-age {
    background: #fef5e8;
    color: #1967d2;;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* ============================================================================
   КОЛОНКА 2: НАЗВА + ВИКЛАДАЧ
   ============================================================================ */

.list-col-2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.list-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    word-wrap: break-word;
}

.list-teacher {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* ============================================================================
   КОЛОНКА 3: ДНІ (ФІКСОВАНА ШИРИНА, РОЗТЯГНУТІ БЕЙДЖІ)
   ============================================================================ */

.list-col-3 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
}

/* Дні - ОДНАКОВОЇ ШИРИНИ, ТЕКСТ ПО ЦЕНТРУ */
.list-days-group {
    background: #1967d2;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 1px 3px rgba(25, 103, 210, 0.25);
    transition: all 0.2s;
}

/* Hover ефекти */
.list-item:hover .list-days-group {
    background: #1557b0;
    transform: scale(1.02);
    box-shadow: 0 2px 6px rgba(25, 103, 210, 0.4);
}

.list-item:hover .list-id {
    background: #1967d2;
    color: white;
}

/* ============================================================================
   АДАПТИВНІСТЬ
   ============================================================================ */

/* Tablet */
@media (max-width: 991px) {
    .list-row {
        grid-template-columns: 80px 1fr 110px;
        gap: 10px;
        padding: 10px 12px;
    }
    
    .list-name {
        font-size: 15px;
    }
    
    .list-teacher {
        font-size: 13px;
    }
}

/* Mobile - стовпцями */
@media (max-width: 767px) {
    .clubs-section {
        padding: 15px 10px;
    }
    
    .clubs-list {
        padding: 0;
        gap: 8px;
    }
    
    .list-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }
    
    .list-col-1 {
        flex-direction: row;
        gap: 8px;
    }
    
    .list-col-1 > * {
        flex: 1;
    }
    
    .list-col-3 {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    .list-days-group {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .list-row {
        padding: 10px;
        gap: 8px;
    }
    
    .list-name {
        font-size: 14px;
    }
    
    .list-teacher {
        font-size: 12px;
    }
    
    .list-id,
    .list-age {
        font-size: 11px;
    }
}