#footer > a {
    color: white;
    text-decoration: underline;
}

/* Privacy Policy Modal */

#privacyPolicy {
    background-color: #fff;
    padding: 5vw;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    overflow-y: auto;
}

#privacyPolicy h1,
#acceptDiv {
    text-align: center;
}

#privacyPolicy p {
    line-height: 1.5;
}

.policy-indent {
    padding-left: 2rem;
}

#acceptDiv {
    border: 2px solid #000;
    padding: 1rem;
    background-color: #d3d3d3;
    margin-top: 2rem;
    cursor: pointer;
}

#acceptDiv a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* Cookie Preferences Banner */

#cookiePreferences {
    width: 30rem;
    max-width: calc(100vw - 2rem);
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    z-index: 999;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

#cookiePreferences p {
    line-height: 1.5;
}

#cookiePreferencesActions {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-preferences-button {
    border: 2px solid #000;
    padding: 0.25rem 0.5rem;
}

.cookie-preferences-button a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

#cookiePolicyLink {
    color: blue;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #cookiePreferences {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }

    #cookiePreferencesActions {
        flex-direction: column;
    }
}