/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    border-top: 3px solid #ffc107;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-link {
    color: #1a56db;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    white-space: nowrap;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 6px;
}

.cookie-consent-buttons .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.cookie-consent-buttons .btn-warning:hover {
    background-color: #ffb300;
    border-color: #ffb300;
}

.cookie-category {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-check-input:checked {
    background-color: #1a56db;
    border-color: #1a56db;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-buttons .btn {
        flex: 1;
    }
}
