.quick-order-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: block !important;
    visibility: visible !important;
}
.quick-order-wrapper h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}
.quick-order-wrapper form {
    display: flex;
    flex-direction: column;
}
.quick-order-wrapper input,
.quick-order-wrapper textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.quick-order-wrapper button {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    background: #00aff0;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}
.quick-order-wrapper button:hover {
    background: #0099d6;
}
.quick-order-wrapper button:disabled {
    background: #ccc;
    cursor: not-allowed;
}
