/* Cookie Consent Banner Styles */

.cookie-consent-banner {
    position: fixed;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    max-width: 90%;
    width: 480px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Banner positions */
.cookie-consent-banner.position-bottom {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.cookie-consent-banner.position-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.cookie-consent-banner.position-bottom-left {
    bottom: 20px;
    left: 20px;
}

.cookie-consent-banner.position-bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Dark theme */
.cookie-consent-banner.theme-dark {
    background-color: #333;
    color: #fff;
}

.cookie-consent-banner.theme-dark .cookie-consent-header h2,
.cookie-consent-banner.theme-dark .cookie-category-title {
    color: #fff;
}

.cookie-consent-banner.theme-dark .btn-close {
    filter: invert(1);
}

.cookie-consent-banner.theme-dark .cookie-category {
    background-color: #444;
    border-color: #555;
}

/* Container */
.cookie-consent-container {
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Header */
.cookie-consent-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-dark .cookie-consent-header {
    border-bottom-color: #555;
}

.cookie-consent-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Body */
.cookie-consent-body {
    padding: 15px 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-consent-body p {
    margin-bottom: 15px;
}

/* Categories */
.cookie-categories {
    margin-top: 15px;
}

.cookie-category {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-category-title {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.cookie-category-description {
    margin-bottom: 5px;
    font-size: 14px;
}

.cookie-category-toggle {
    display: flex;
    align-items: center;
}

.cookie-category-toggle .form-check-input:disabled {
    opacity: 0.7;
}

/* Footer */
.cookie-consent-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theme-dark .cookie-consent-footer {
    border-top-color: #555;
}

.cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.cookie-consent-links {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .cookie-consent-banner {
        width: calc(100% - 20px);
        max-width: none;
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    .cookie-consent-banner.position-top,
    .cookie-consent-banner.position-bottom {
        left: 10px;
        transform: none;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons button {
        width: 100%;
    }
}

/* Cookie settings button in footer */
#open-cookie-settings {
    margin: 10px 0;
    font-size: 12px;
    padding: 4px 8px;
}
