.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 20px;
    font-family: Arial, sans-serif;
}

#cookie-override {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 9999;
    font-size: 0.9rem;
}

.modal-content {
  background-color: var(--primary-color);  
  padding: 12px;
}

.modal-content h2 {
    margin-top: 0;
    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;
}

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

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

.btn-outline { background: white; color: #6c757d; border: 2px solid #6c757d; }
.btn-outline:hover { background: #6c757d; color: white; }

@media (max-width: 767px) {
    #cookie-override {
        padding: 8px;
        font-size: 1.2rem;
    }

    #cookie-override::before {
        content: "🍪";
    }

    #cookie-override span {
        display: none;
    }
}