.sales-order-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.sales-order-container h1 {
    text-align: center;
    color: #23282d;
    margin-bottom: 30px;
    font-size: 24px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.dealer-section, .date-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dealer-section label, .date-section label {
    font-weight: bold;
}

.order-actions {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.order-table {
    margin-bottom: 20px;
}

.order-table th {
    background: #2271b1;
    color: white;
    font-weight: 600;
}

.order-table tfoot td {
    font-weight: bold;
    background: #f0f0f1;
}

.receiver-info {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #e5e5e5;
    margin-top: 20px;
}

.receiver-info p {
    margin: 10px 0;
}

input[type="text"], input[type="tel"], input[type="number"], select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.row-actions .button {
    padding: 4px 8px;
    font-size: 12px;
    margin: 2px;
}

.quantity-cell input, .price-cell input, .amount-cell input {
    width: 80px;
}

.note-cell input {
    width: 120px;
}

.product-select {
    width: 150px !important;
}
