/* === Banner === */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

#cookie-banner .cookie-text {
    margin-bottom: 10px;
}

#cookie-banner .cookie-text a {
    color: #fff;
    text-decoration: underline;
}

#cookie-banner .cookie-buttons {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#cookie-banner .cookie-buttons button {
    padding: 5px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
}

#cookie-banner #accept-all {
    background: #1d6db3;
    color: #fff;
}

#cookie-banner #save-quick {
    background: #444;
    color: #fff;
}

#cookie-banner #details {
    background: #284876;
    color: #fff;
}

.powered-by-container {
    text-align: right;
    margin-top: -25px;
}

.powered-by {
    font-size: 10px;
}

.powered-by a {
    color: inherit; 
    text-decoration: none;
}

/* === Modal === */
#cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 20px;
}

#cookie-modal[hidden] {
    display: none !important;
}

.cookie-modal-content {
    background: #fff;
    color: #000;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    position: relative;
}

.cookie-modal-content h3 {
    margin-top: 0;
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.cookie-modal-content h4 {
    margin-bottom: 5px;
    font-size: 15px;
}

.cookie-modal-content p {
    font-size: 14px;
    color: #333;
    margin-top: 0;
    margin-bottom: 8px;
}

.cookie-modal-content label {
    display: block;
    margin: 5px 0;
}

.cookie-modal-content a {
    display: block;
    margin: 5px 0;
    color: #1d6db3;
}

.cookie-modal-content .modal-actions {
    margin-top: 20px;
    text-align: right;
}

#save-preferences {
    padding: 5px 15px;
    background: #1d6db3;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}


.cookie-quick {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.cookie-quick label {
    display: inline-flex;
    align-items: center;
    margin: 0; 
    color: white !important; 
    font-size: 13px; 
}

.cookie-quick input[type="checkbox"] {
    margin-right: 5px;
    accent-color: #1d6db3;
}