/* Basic styling for the page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
}

h1 {
    color: #333;
}

p {
    color: #555;
}

/* Cookie Consent Banner styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 9999;
}

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

.cookie-button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

#accept-cookies {
    background-color: #4CAF50;
    color: white;
}

#reject-cookies {
    background-color: #f44336;
    color: white;
}

