/* 多步骤订单样式 */
.wmso-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wmso-form-modal {
    background: white;
    padding: 30px;
    border-radius: 8px;
    min-width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.wmso-form-field {
    margin: 15px 0;
}

.wmso-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wmso-form-field input,
.wmso-form-field textarea,
.wmso-form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wmso-form-buttons {
    margin-top: 20px;
    text-align: right;
}

.wmso-form-buttons button {
    margin-left: 10px;
}

.wmso-message-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 10000;
    text-align: center;
    min-width: 300px;
}

.wmso-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: #0073aa;
    animation: wmso-spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes wmso-spin {
    to { transform: rotate(360deg); }
}

.wmso-processing {
    opacity: 0.6;
    cursor: wait !important;
}