        /* Arka planı hafif karartır ama paneli açık renk yapar */
        .cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            /* JS ile açılacak */
            justify-content: center;
            align-items: center;
            z-index: 10000;
            font-family: 'Roboto', sans-serif;
        }

        .cookie-modal {
            background: #ffffff;
            /* İsteğin üzerine açık renk */
            width: 90%;
            max-width: 600px;
            max-height: 85vh;
            padding: 30px;
            border-radius: 12px;
            overflow-y: auto;
            color: #333;
        }

        .cookie-header h3 {
            color: #103b7b;
            margin-top: 0;
        }

        .cookie-body p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #555;
        }

        .small-text {
            font-size: 0.8rem !important;
            margin-top: 10px;
        }

        .us-notice {
            font-size: 0.75rem;
            background: #f9f9f9;
            padding: 10px;
            border-left: 3px solid #ff6b00;
        }

        .cookie-options {
            margin: 20px 0;
            text-align: left;
        }

        .option-item {
            margin-bottom: 10px;
            padding: 8px;
            border-bottom: 1px solid #eee;
        }

        .cookie-footer {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }

        .btn-main {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
        }

        .btn-sub {
            background: #eee;
            color: #333;
            border: none;
            padding: 10px;
            border-radius: 6px;
            cursor: pointer;
        }

        .legal-links {
            font-size: 0.8rem;
            margin-top: 10px;
            text-align: center;
        }

        .legal-links a {
            color: #103b7b;
            text-decoration: none;
        }