.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 400px;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-category {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.form-check-input:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
}

.cookie-settings-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    animation: fadeIn 0.3s ease-in-out;
}

.cookie-settings-icon button {
    width: 42px;
    height: 42px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.cookie-settings-icon button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        width: auto;
    }
}