<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#chipkin-guest-notice {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#chipkin-guest-notice.active {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.chipkin-guest-notice-content {
    background-color: white;
    padding: 30px;
    max-width: 700px;
    border-radius: 10px;
    text-align: center;
}

.chipkin-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

#chipkin-guest-notice button {
    padding: 10px 20px;
    border: none;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#chipkin-guest-notice button:hover {
    background-color: #005f8d;
}
</pre></body></html>