/* Estilos comunes reutilizables */

/* Logo */
.logo img {
    height: 60px !important;
    width: auto !important;
}

/* Estilos inline comunes */
.inline-center-text {
    text-align: center;
    margin-top: 40px;
}

.inline-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
}

/* Galería con gradientes */
.gallery-item-gradient-1 {
    background: linear-gradient(135deg, #970066, #ec4899);
}

.gallery-item-gradient-2 {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.gallery-item-gradient-3 {
    background: linear-gradient(135deg, #7c3aed, #c026d3);
}

.gallery-item-gradient-4 {
    background: linear-gradient(135deg, #9333ea, #970066);
}

.gallery-item-gradient-5 {
    background: linear-gradient(135deg, #970066, #7c3aed);
}

.gallery-item-gradient-6 {
    background: linear-gradient(135deg, #c026d3, #9333ea);
}

/* Leyenda colores */
.leyenda-color-disponible {
    background: #dcfce7;
}

.leyenda-color-ocupado {
    background: #fee;
}

.leyenda-color-festivo {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.leyenda-color-cerrado {
    background: #fee;
    color: #dc2626;
    text-decoration: line-through;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.leyenda-color-seleccionado {
    background: #970066;
}

/* Botón limpiar */
.btn-limpiar {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-limpiar:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .logo img {
        height: 50px !important;
    }

    .inline-center-text {
        margin-top: 30px;
    }

    .inline-btn-primary {
        padding: 12px 30px;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .logo img {
        height: 45px !important;
    }

    .inline-center-text {
        margin-top: 25px;
    }

    .inline-btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .btn-limpiar {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .logo img {
        height: 40px !important;
    }

    .inline-center-text {
        margin-top: 20px;
    }

    .inline-btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-limpiar {
        padding: 10px 12px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .leyenda-color {
        width: 16px;
        height: 16px;
    }
}
