/* Cookie Banner */
#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px; /* Your adjusted value */
    line-height: 1.4;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #d3d3d3; /* Your adjusted value */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000; /* Increased from 1000 to avoid overlap */
    color: #333333; /* Added dark grey text */
}
/* Rest of the CSS remains unchanged */
.cookie-content {
    text-align: center;
}
.cookie-content p {
    margin: 0 0 15px;
}
.cookie-content a {
    color: #0080ff;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.cookie-buttons button {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #fff;
}
#acceptCookies {
    background: #0080ff;
}
#declineCookies {
    background: #666;
}
#cookieSettingsBtn {
    background: #0080ff;
}

/* Cookie Settings Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}
.modal-content {
    background: #fff;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #333333; /* Added dark grey text */
}
.modal-content h2 {
    margin: 0 0 20px;
    font-size: 18px;
    text-align: center;
}
.cookie-option {
    margin: 15px 0;
    line-height: 1.4;
}
.cookie-option label {
    display: block;
}
.cookie-option input {
    margin-right: 10px;
}
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.modal-buttons button {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #fff;
}
#saveSettings {
    background: #0080ff;
}
#cancelSettings {
    background: #666;
}

/* Main content styling */
.content {
    margin-top: 50px;
    text-align: center;
}