.qop-quick-order-form {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px 0;
}

.qop-quick-order-form h3 {
    margin-top: 0;
}

.qop-form-group {
    margin-bottom: 15px;
}

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

.qop-form-group input,
.qop-form-group textarea,
.qop-form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.qop-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.qop-form-submit {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.qop-form-submit:hover {
    background: #005a87;
}

.qop-form-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 3px;
    display: none;
}

.qop-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.qop-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}
