/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-consent-icon {
    font-size: 36px;
    flex-shrink: 0;
    color: #fbbf24;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.cookie-consent-message {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 8px;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: white;
}

.cookie-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: white;
    color: #1e293b;
    border: none;
}

.cookie-btn-accept:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Cookie Settings Modal */
.cookie-category {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.cookie-category h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-category .text-muted {
    font-size: 13px;
    line-height: 1.5;
}

.cookie-category .form-check-input {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.cookie-category .form-check-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Dark Mode Support */
[data-bs-theme="dark"] .cookie-consent-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .cookie-category {
    background: #1e293b;
    border-color: #334155;
}

[data-bs-theme="dark"] .cookie-category .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-icon {
        font-size: 28px;
    }
    
    .cookie-consent-text {
        text-align: center;
    }
    
    .cookie-consent-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }
    
    .cookie-consent-title {
        font-size: 16px;
    }
    
    .cookie-consent-message {
        font-size: 13px;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-banner.show {
    animation: slideUp 0.3s ease;
}





