/* Cookie Banner Styling */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.accept-button {
    background-color: #28a745; /* Green for Accept */
    color: #ffffff;
}

.reject-button {
    background-color: #dc3545; /* Red for Reject */
    color: #ffffff;
}

.settings-button {
    background-color: #000; /* Blue for Settings */
    color: #ffffff;
}

#cookie-banner a {
    color: #00aced;
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #ffffff;
}

/* Cookie Modal Styling */
.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    padding: 20px;
}

.modal-content {
    text-align: center;
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.save-button {
    background-color: #28a745; /* Green Save button */
    color: #ffffff;
}

.close-button {
    background-color: #dc3545; /* Red Close button */
    color: #ffffff;
}

.cookie-options {
    margin: 20px 0;
    text-align: left;
}

.cookie-options label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
}
