.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 20px;
    font-family: Arial, sans-serif;
    border: solid 1px #000;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-override {
    display: flex;
    justify-content: center;    
    position: fixed;
    bottom: -25px;
    transform: translateX(-50%);
    width: 50px;
    right: 20px;
    height: 30px;
    background: #fff;
    cursor: pointer;
    z-index: 100;
    transition: bottom 0.3s;
    border: solid 1px #000;
}

.cookie-gear {
    width: 55%;
}

.modal-content {
  padding: 12px;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.modal-content p {
    font-size: 0.9rem;
    line-height: 1.5;

}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-cookie {
    margin:10px;
}

.custom-preferences {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-preferences label {
    display: flex;
    align-items: center;
    gap: 10px;
}


