#cookie-banner,
#cookie-details,
#cookie-overlay,
#cookie-settings,
#cookie-updated-message {
    transition: all 0.3s ease;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 9999;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.cookie-btn.green {
    background: #4CAF50;
    color: white;
}

.cookie-btn.red {
    background: #f44336;
    color: white;
}

.cookie-btn.blue {
    background: #2196F3;
    color: white;
}

.cookie-btn.grey {
    background: #555;
    color: white;
}

.cookie-btn-link {
    background: none;
    color: #fff;
    padding: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-style: italic;

}

.cookie-btn-link:hover {
    color: #184c99;
    text-decoration: underline;
}

#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}

#cookie-details {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    display: none;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10000;
}

.cookie-info-link a {
    color: #2c6cdf;
    font-style: italic;
    text-decoration: underline;
    font-size: 0.98em;
}

.cookie-info-link a:hover {
    color: #184c99;
}

#cookie-settings {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.5;
    display: none;
    z-index: 9998;
}

#cookie-settings:hover {
    opacity: 1;
}

#cookie-updated-message {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: none;
    z-index: 10000;
}