       :root {
            --water-dark: #023e8a;
            --water-main: #0077b6;
            --water-light: #00b4d8;
            --eco-green: #2a9d8f;
            --eco-green-hover: #21867a;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.4);
            --error-color: #e63946;
        }

        body {
            font-family: 'Figtree', sans-serif;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: linear-gradient(-45deg, var(--water-dark), var(--water-main), var(--eco-green), var(--water-light));
            background-size: 400% 400%;
            animation: gradientFlow 15s ease infinite;
            overflow-x: hidden;
            position: relative;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Анимация пузырьков */
        .bubbles {
            position: fixed; /* Изменено на fixed, чтобы фон не уезжал при прокрутке длинного дашборда */
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        .bubble {
            position: absolute;
            bottom: -100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            opacity: 0;
            animation: rise 10s infinite ease-in;
        }
        .bubble:nth-child(1) { width: 60px; height: 60px; left: 10%; animation-duration: 8s; }
        .bubble:nth-child(2) { width: 30px; height: 30px; left: 20%; animation-duration: 5s; animation-delay: 1s; }
        .bubble:nth-child(3) { width: 80px; height: 80px; left: 35%; animation-duration: 12s; animation-delay: 2s; }
        .bubble:nth-child(4) { width: 40px; height: 40px; left: 50%; animation-duration: 7s; animation-delay: 0s; }
        .bubble:nth-child(5) { width: 50px; height: 50px; left: 70%; animation-duration: 9s; animation-delay: 3s; }
        .bubble:nth-child(6) { width: 25px; height: 25px; left: 85%; animation-duration: 6s; animation-delay: 1.5s; }

        @keyframes rise {
            0% { bottom: -100px; transform: translateX(0); opacity: 0; }
            50% { opacity: 1; }
            100% { bottom: 1080px; transform: translateX(-100px); opacity: 0; }
        }

        /* Общие классы для стекла */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        /* === НОВЫЕ СТИЛИ ДЛЯ ДАШБОРДА === */
        
        /* Верхняя навигационная панель */
        .glass-navbar {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1030;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--water-dark) !important;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link {
            color: var(--water-dark) !important;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--eco-green) !important;
        }

        /* Контейнер страницы */
        .dashboard-main {
            flex-grow: 1;
            padding: 2.5rem 0;
            z-index: 1;
            position: relative;
        }

        /* Карточки статистики */
        .stat-card {
            padding: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .stat-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            transform: translateY(-5px);
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
        }

        .icon-blue { background: linear-gradient(135deg, var(--water-light), var(--water-main)); box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3); }
        .icon-green { background: linear-gradient(135deg, #48cae4, var(--eco-green)); box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3); }
        .icon-dark { background: linear-gradient(135deg, var(--water-main), var(--water-dark)); box-shadow: 0 4px 10px rgba(2, 62, 138, 0.3); }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--water-dark);
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #555;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Стеклянные таблицы */
        .table-glass {
            --bs-table-bg: transparent;
            --bs-table-color: #333;
            margin-bottom: 0;
        }
        
        .table-glass thead th {
            border-bottom: 2px solid rgba(0, 119, 182, 0.2);
            color: var(--water-main);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .table-glass tbody td {
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            vertical-align: middle;
        }

        .table-glass tbody tr:last-child td {
            border-bottom: none;
        }

        .table-glass tbody tr:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        /* Бейджи статусов */
        .status-badge {
            padding: 0.35rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .status-active { background: rgba(42, 157, 143, 0.15); color: var(--eco-green-hover); }
        .status-pending { background: rgba(0, 180, 216, 0.15); color: var(--water-main); }
        .status-danger { background: rgba(230, 57, 70, 0.15); color: var(--error-color); }
        .status-warning { background: rgba(255, 193, 7, 0.15); color: #b78a00; }

        /* Кнопка */
        .btn-water {
            background: linear-gradient(90deg, var(--water-main), var(--eco-green));
            border: none;
            border-radius: 0.75rem;
            color: white;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
        }
        .btn-water:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(42, 157, 143, 0.5);
            color: white;
        }

        /* Футер (из исходника) */
        .global-footer {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid var(--glass-border);
            padding: 1.5rem 0;
            color: white;
            z-index: 10;
            width: 100%;
        }
        .global-footer .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--water-light), var(--water-main));
            border-radius: 10px;
            color: white;
            box-shadow: 0 4px 10px rgba(0, 119, 182, 0.3);
        }
        .global-footer .dev-badge {
            background: var(--eco-green);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .global-footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .global-footer a:hover {
            color: var(--water-light);
        }