/* ===================================================================
   Gimnasio App — Instalaciones (EasyCancha)
   Reservation cards + CTA button
   =================================================================== */

/* --- CTA Button --- */
.instalaciones-cta {
    margin-bottom: 20px;
}

.btn-reservar-cancha {
    width: 100%;
    background: white;
    color: #4682B4;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.btn-reservar-cancha:active {
    transform: scale(0.97);
    background: #f0f0f0;
}

/* --- Section Title --- */
.instalaciones-section-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 12px 4px;
}

/* --- List --- */
.instalaciones-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Card --- */
.instalacion-card {
    background: white;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
}

/* --- Icon --- */
.instalacion-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e8f0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instalacion-icon i {
    font-size: 20px;
    color: #4682B4;
}

/* --- Info --- */
.instalacion-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.instalacion-deporte {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.3;
}

.instalacion-cancha {
    font-size: 12px;
    color: #6b7280;
}

.instalacion-horario {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.instalacion-horario i {
    font-size: 11px;
}

/* --- Estado --- */
.instalacion-estado-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: #dcfce7;
    color: #16a34a;
    text-transform: uppercase;
    white-space: nowrap;
}
