<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.modal-open #wrapper {
    filter: blur(5px);
}

.voltaria-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.voltaria-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.voltaria-modal-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.voltaria-close {
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    color: #ededed;
}

#voltaria-button {
    padding: 10px 20px;
    background-color: #1a8981;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Verdana;
    font-size: 20px;
}

#voltaria-button:hover {
    background-color: #5bcdb6;
}
</pre></body></html>