/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #e1e5e9;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    margin: 0;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
}

.cookie-consent-text a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 80px;
}

.cookie-consent-btn-accept {
    background: #2563eb;
    color: white;
}

.cookie-consent-btn-accept:hover {
    background: #1d4ed8;
}

.cookie-consent-btn-decline {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-consent-btn-decline:hover {
    background: #e5e7eb;
}

.cookie-consent-btn-settings {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.cookie-consent-btn-settings:hover {
    background: #f9fafb;
    color: #374151;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-consent-btn {
        width: 100%;
    }

    .cookie-consent-banner {
        padding: 16px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        background: #1f2937;
        border-top-color: #374151;
    }

    .cookie-consent-text {
        color: #d1d5db;
    }

    .cookie-consent-text a {
        color: #60a5fa;
    }

    .cookie-consent-btn-decline {
        background: #374151;
        color: #d1d5db;
        border-color: #4b5563;
    }

    .cookie-consent-btn-decline:hover {
        background: #4b5563;
    }

    .cookie-consent-btn-settings {
        color: #9ca3af;
        border-color: #4b5563;
    }

    .cookie-consent-btn-settings:hover {
        background: #374151;
        color: #d1d5db;
    }
}



