<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media only screen and (max-width: 600px) {
    .dialog-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 601px) {
    .dialog-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.dialog {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.dialog-header {
    text-align: center;
    padding: 20px;
}

.dialog-header h2 {
    margin: 0;
}

.dialog-content {
    text-align: center;
    padding: 20px;
}

.dialog-footer {
    text-align: center;
    padding: 20px;
}

.dialog-footer .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dialog-footer .btn-yes {
    background-color: #4bad3a;
}

.dialog-footer .btn-no {
    background-color: #dc3545;
}

.dialog-footer .btn:hover {
    opacity: 0.8;
}</pre></body></html>