/**
 * Glykotexnies Order Status Styles
 */

.order-status-container {
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 300px;
}

.order-status-container select, 
.order-status-container button {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
}

.order-status-container button {
    background: #007cba;
    color: white;
    border: none;
    cursor: pointer;
    font-family: Manrope, sans-serif;
    font-weight: 300;
    text-transform: none;
}

.order-status-container button:hover {
    background: #495057;
}

.order-status-message {
    margin-top: 10px;
    font-weight: bold;
    color: green;
    display: none;
}

/* Button states */
.order-status-container button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}