.mq-42929447-wrapper {
    font-family: inherit;
}
.mq-trigger-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
}
.mq-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}
.mq-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
}
.mq-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.mq-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.mq-section h4 {
    margin-bottom: 10px;
    margin-top: 0;
}
.mq-section label {
    display: block;
    margin-bottom: 5px;
}
.mq-mirror-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.mq-mirror-item input {
    width: 30%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.mq-remove-mirror {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    border-radius: 4px;
}
.mq-btn-secondary {
    background: #eee;
    border: 1px solid #ccc;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
}
.mq-section input[type="text"],
.mq-section input[type="email"],
.mq-section input[type="tel"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.mq-btn-primary {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}
.mq-messages {
    margin-bottom: 15px;
    padding: 10px;
    display: empty;
}
.mq-messages:not(:empty) {
    display: block;
}
.mq-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}
.mq-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}