.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-consent.hiding {
    transform: translateY(100%);
}

.cookie-settings {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.cookie-settings.show {
    max-height: 300px;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}