/* Header and Footer Styles */
.site-header, .site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.site-header a, .site-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.site-header a:hover, .site-footer a:hover {
    color: #FFD700;
}

.navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.copyright-text {
    margin-top: 15px;
    font-size: 0.9em;
    color: #888888;
}

/* Cookie Banner Styles */
.cookie-consent-banner {
    display: none; /* Hidden by default as per user request */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent-banner p {
    margin: 0;
    flex-grow: 1;
}

.cookie-consent-banner a {
    color: #FFD700;
    text-decoration: underline;
}

.cookie-consent-banner .btn-container {
    display: flex;
    gap: 10px;
}

.cookie-consent-banner button {
    background-color: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-consent-banner button:hover {
    background-color: #ffed4a;
} 