/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #007bff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-consent-text p:first-child {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.cookie-consent-text p:last-child {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.cookie-consent-options {
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
}

.cookie-option label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    margin: 0;
}

.cookie-option input[disabled] + label {
    color: #999;
    cursor: not-allowed;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cookie-consent-actions .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-actions .btn-primary {
    background: #007bff;
    color: white;
}

.cookie-consent-actions .btn-primary:hover {
    background: #0056b3;
}

.cookie-consent-actions .btn-success {
    background: #28a745;
    color: white;
}

.cookie-consent-actions .btn-success:hover {
    background: #1e7e34;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
    }
}

/* Dark theme support */
[data-theme="dark"] .cookie-consent-banner {
    background: #333;
    border-color: #555;
    color: #fff;
}

[data-theme="dark"] .cookie-consent-text p:first-child {
    color: #fff;
}

[data-theme="dark"] .cookie-consent-text p:last-child {
    color: #ccc;
}

[data-theme="dark"] .cookie-option label {
    color: #fff;
}

[data-theme="dark"] .cookie-option input[disabled] + label {
    color: #888;
}
