.cookie-card {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 320px;
    z-index: 1050;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.cookie-card .position-absolute {
    left: auto;
    right: 1rem;
    top: 1rem;
}

#dropdownIcon {
    transition: transform 0.3s ease;
}

#dropdownIcon.rotate {
    transform: rotate(180deg);
}

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

.cookie-options.show {
    max-height: 200px;
}
