/* === General Reset & Base Styling === */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
}


/* === Cookie Banner === */
#cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    
    position: absolute;
    left: 0;
    top: 0;
    
    color: #fff;
    width: 100%;
    padding: 15px;
    text-align: center;
    display: none;
    z-index: 9999;
    
    background:rgba(0, 0, 0, 0.7); transition: opacity 50ms; visibility:visible; opacity:1; color:#000; z-index:9999; padding:1%;
}


.inner-content { max-width:600px; position:relative; margin: auto; padding:1%; background:#E5E5E5; border:2px outset #FFF; border-radius:10px; margin-top:1%; 
}


#cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
    background-color: #45a049;
}

/* === Modal Styling === */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    width: 320px;
    max-width: 90%;
    height: 100%;
    max-height: 550px;
    border-radius: 8px;
    z-index: 10000;
    overflow: auto;
    color: #000;
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.modal-content label {
    margin: 10px 0;
    font-size: 15px;
}

.modal-content input[type="checkbox"] {
    margin-right: 8px;
}

.modal-content button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-content button:hover {
    background-color: #0056b3;
}


/* === Accessibility Enhancements === */
.modal[aria-hidden="false"] {
    outline: none;
}

body.modal-open {
    overflow: hidden;
}
