/* WCAG: Skip link pro přeskočení hlavičky a navigace přímo na hlavní obsah */
        .skip-link {
            position: absolute;
            top: -50px;
            left: 0;
            background: #0a3d3d;
            color: #ffffff;
            padding: 8px 16px;
            z-index: 100000;
            text-decoration: none;
            font-weight: bold;
            transition: top 0.2s ease;
        }
        .skip-link:focus {
            top: 0;
            outline: 2px solid #ffffff;
            outline-offset: -2px;
        }

        /* Vylepšený, profesionální a WCAG AAA přístupný Cookie Banner */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #0f172a; /* Velmi tmavé pozadí pro nejvyšší kontrast */
            color: #ffffff;
            padding: 24px 20px;
            z-index: 99999; /* Vždy nad vším */
            display: none;
            box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
            border-top: 4px solid #0a3d3d; /* Firemní barva na okraji */
            font-family: 'Inter', sans-serif;
            text-align: left;
        }
        
        .cookie-banner-container {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        @media (min-width: 992px) {
            .cookie-banner-container {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .cookie-banner-text {
            flex: 1;
            font-size: 1rem;
            line-height: 1.6;
        }

        .cookie-banner-text strong {
            display: block;
            font-size: 1.25rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .cookie-banner-text p {
            margin: 0;
        }

        .cookie-banner-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        #cookie-banner button {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s ease;
            text-align: center;
        }

        #cookie-banner button:hover,
        #cookie-banner button:focus {
            background: #ffffff;
            color: #0f172a;
        }

        #cookie-banner button:focus-visible {
            outline: 4px solid #38bdf8; /* Tlustá a jasná outline - WCAG AAA pro focus */
            outline-offset: 4px;
        }

        #cookie-banner button#accept-all {
            background: #0a3d3d;
            color: #ffffff;
            border-color: #0a3d3d;
        }

        #cookie-banner button#accept-all:hover,
        #cookie-banner button#accept-all:focus {
            background: #0d4f4f;
            border-color: #0d4f4f;
        }

        #cookie-banner a {
            color: #38bdf8; /* Jasně modrá na tmavém pozadí - WCAG AAA */
            text-decoration: underline;
            text-underline-offset: 4px;
            font-weight: 600;
        }

        #cookie-banner a:hover {
            text-decoration: none;
            color: #7dd3fc;
        }

        #cookie-banner a:focus-visible {
            outline: 4px solid #38bdf8;
            outline-offset: 4px;
            border-radius: 2px;
        }
        /* --- POLOPRŮHLEDNÉ DLAŽDICE (GLASSMORPHISM) --- */
        /* Posílené selektory o 'body' zajistí, že přebijeme Tailwind i staré styly */

        /* 1. barva: #c4f0de (s 80% neprůhledností) */
        body .dashboard-grid-container .modal-trigger:nth-child(3n+1) {
            background-color: #c4f0deCC !important;
            backdrop-filter: blur(8px) !important;
            -webkit-backdrop-filter: blur(8px) !important;
        }

        /* 2. barva: #94e3c2 (s 80% neprůhledností) */
        body .dashboard-grid-container .modal-trigger:nth-child(3n+2) {
            background-color: #94e3c2CC !important;
            backdrop-filter: blur(8px) !important;
            -webkit-backdrop-filter: blur(8px) !important;
        }

        /* 3. barva: #ecfcf5 (s 80% neprůhledností) */
        body .dashboard-grid-container .modal-trigger:nth-child(3n+3) {
            background-color: #ecfcf5CC !important;
            backdrop-filter: blur(8px) !important;
            -webkit-backdrop-filter: blur(8px) !important;
        }

        /* --- SUPER HOVER EFEKT --- */
        body .dashboard-grid-container .modal-trigger:hover {
            transform: translateY(-10px) scale(1.05) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 25px rgba(148, 227, 194, 0.8) !important;
            border-color: #ffffff !important;
            z-index: 10 !important;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        }
