:root {
            --powder-blush: #FFA69E;
            --alice-blue: #edf6f9;
            --pearl-agua: #83c5be;
            --light-blue: #AED9E0;
            --blue-slate: #5E6472;
            --tangerine-dream: #e29578;
            /* Nuevos Gradientes para dar vida */
            --grad-primary: linear-gradient(135deg, #83c5be 0%, #a2d2ff 100%);
            --grad-accent: linear-gradient(135deg, #FFA69E 0%, #e29578 100%);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8fbff;
            color: var(--blue-slate);
        }

        /* SIDEBAR CON MUCHO COLOR */
        .sidebar {
            width: 280px;
            height: calc(100vh - 40px);
            margin: 20px;
            border-radius: 30px;
            background: var(--grad-primary); /* Degradado principal */
            color: white;
            position: sticky;
            top: 20px;
            box-shadow: 0 20px 40px rgba(131, 197, 190, 0.3);
        }

        .sidebar hr { border-top: 1px solid rgba(255,255,255,0.2); }

        .nav-link {
            color: rgba(255,255,255,0.8);
            border-radius: 15px;
            margin-bottom: 8px;
            transition: all 0.3s;
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateX(5px);
        }

        /* TARJETAS CON ACENTOS */
        .stat-card {
            border: none;
            border-radius: 25px;
            padding: 25px;
            background: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            border-left: 8px solid var(--pearl-agua); /* Franja de color */
            transition: 0.3s;
        }

        .stat-card.orange { border-left-color: var(--tangerine-dream); }

        /* ICONOS VIBRANTES */
        .icon-box {
            width: 55px;
            height: 55px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.05);
        }

        .bg-icon-teal { background: #e0f2f1; color: #00897b; }
        .bg-icon-orange { background: #fff3e0; color: #fb8c00; }

        /* TABLA MÁS COLORIDA */
        .table-custom {
            border-collapse: separate;
            border-spacing: 0 15px;
        }

        .table-custom tr {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            transition: 0.3s;
        }

        .table-custom tr:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 25px rgba(131, 197, 190, 0.15);
        }

        .table-custom td {
            padding: 20px;
            border: none;
        }

        .table-custom td:first-child { border-radius: 20px 0 0 20px; }
        .table-custom td:last-child { border-radius: 0 20px 20px 0; }

        .time-badge {
            background: var(--grad-primary);
            color: white;
            padding: 8px 15px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 4px 10px rgba(131, 197, 190, 0.3);
        }

        /* BOTONES VIBRANTES */
        .btn-action {
            background: var(--grad-accent);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 15px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-action:hover {
            box-shadow: 0 10px 20px rgba(226, 149, 120, 0.4);
            color: white;
            transform: translateY(-2px);
        }

        .btn-sidebar {
            background: white;
            color: var(--pearl-agua);
            font-weight: 700;
        }


        /* Ajuste para que el main no se desborde */
main {
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #f8f9fa; /* Un gris muy ligero para que resalten las cards */
}

/* En móvil, bajamos el tamaño de la letra del saludo */
@media (max-width: 768px) {
    h2.fw-bold {
        font-size: 1.4rem;
    }
    .p-5 {
        padding: 1.5rem !important;
    }
}

.login-card {
            border: none;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            max-width: 400px;
            width: 100%;
        }
        .btn-login {
            background-color: var(--pearl-agua, #00d1b2); /* Usando tu variable de color */
            border: none;
            color: white;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            color: white;
        }
        .form-control {
            border-radius: 12px;
            padding: 12px;
            border: 1px solid #eee;
        }
        .form-control:focus {
            box-shadow: 0 0 10px rgba(0,209,178,0.1);
            border-color: var(--pearl-agua, #00d1b2);
        }
        .full-height-container {
    min-height: 100vh;
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
    padding: 20px;
}

     /* Estilos específicos para la Landing del Cliente */
        .client-hero-bg {
            min-height: 100vh;
            background: var(--grad-primary);
            display: flex;
            align-items: center;
            color: white;
        }
        .login-column {
            background: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 3rem;
            border-radius: 50px 0 0 50px; /* Curva elegante para separar del hero */
        }
        @media (max-width: 991px) {
            .login-column {
                border-radius: 0;
                min-height: auto;
                padding: 2rem;
            }
            .client-hero-bg { min-height: 60vh; padding-top: 3rem; }
        }
        .feature-icon {
            background: rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }