/* Essential Order System Styles - Only what's missing from main CSS */

/* Max quantity display styling */
.max-quantity-display {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
    display: block;
    text-align: center;
    width: 100%;
    clear: both;
    line-height: 1.2;
}

/* Disabled button states */
button.menu-item-quantity-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loading state for order submission */
.melior-next-step-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Limit message styling */
.menu-item-limit-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    padding: 5px 10px;
    background-color: #fff5f5;
    border: 1px solid #ffcccc;
    border-radius: 4px;
    display: none;
}

.menu-item-limit-message.show {
    display: block;
}

/* Preference fields styling */
.preference-description {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}

.preference-input-wrapper {
    margin-bottom: 20px;
}

.preference-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.preference-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.preference-input::placeholder {
    color: #999;
    font-style: italic;
} 

 
