<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sce-order-btn {
    margin-top: 10px;
    padding: 8px 14px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.sce-order-btn:hover {
    background-color: #005f8d;
}

.sce-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.sce-modal-overlay.visible {
    display: flex;
}

.sce-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    font-family: inherit;
}

.sce-modal-content label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.sce-modal-content input,
.sce-modal-content button {
    display: block;
    width: 100%;
    margin: 6px 0;
    padding: 10px;
    font-size: 15px;
}

.sce-modal-content button[type="submit"] {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    background-color: #0073aa;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sce-modal-content button[type="submit"]:hover {
    background-color: #005f8d;
}
</pre></body></html>