/* Privacy Policy Page Specific Styles */

/* Make privacy policy page always scrollable */
body.privacy-policy {
    overflow-y: auto;
    max-height: 100vh;
}

.close-button {
    position: fixed;
    top: 8px;
    right: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    z-index: 1000;
    min-width: auto;
    height: auto;
}

.close-button:hover {
    background-color: var(--hover-blue-link);
}

.close-button:focus {
    outline: 2px solid var(--focus-blue);
    outline-offset: 2px;
}

.close-button:active {
    background-color: var(--focus-blue);
}

/*# sourceMappingURL=privacy.css.map*/