
/* Order System Styles */



.quantity-controls {
 /*   display: flex;
    align-items: center; */
    gap: 5px;
}

.quantity-btn {
    width: 15px;
    border: 1px solid #ddd;
    background: #eeeeee;
    border-radius: 4px;
    cursor: pointer;
/*    transition: all 0.3s ease;*/
}


.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.order-summary {
    background: #f8f9fa;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.summary-row {
    display: flex;
    align-items: center;
	color:blue;
    padding: 5px 0;
    font-size: 1.1rem;
}

.customer-info {
    /*background: #f8f9fa;*/
	background: lightblue;
	padding:5px;
	margin-bottom: 10px;
    max-width: 800px;
    width: 100%;
	
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.form-group label {
	background: lighblue;
    color: #2c3e50;
	vertical-align:top;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-actions {
    text-align: center;
    padding-bottom: 10px;
}

.btn-preview, .btn-submit {
    background: #3498db;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.btn-preview:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
/*.modal {
    background: rgba(0,0,0,0.5);
}*/

.modal-content {
    background: lightyellow;
    border-radius: 8px;
    max-width: 900px;
    width: 95%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 10px;
}

.modal-footer {
    padding: 10px;
    border-top: 1px solid #e9ecef;
    text-align: right;
    gap: 10px;
}

.btn-cancel, .btn-confirm {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.btn-cancel {
    background: #95a5a6;
    color: white;
}

.btn-confirm {
    background: #27ae60;
    color: white;
}

.preview-items {
    margin-bottom: 5px;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.preview-customer {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
}
