/* Estilos para el formulario de pedidos */

.wpos-order-form-wrapper {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.wpos-form-header {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #eee;
    background-color: #fff;
}

.wpos-form-header label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.wpos-form-header input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.wpos-product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.wpos-product-table th, .wpos-product-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.wpos-product-table th {
    background-color: #e9e9e9;
    font-weight: bold;
}

.wpos-product-table td:last-child {
    text-align: center;
    width: 100px; /* Ancho fijo para la columna de cantidad */
}

.wpos-quantity-input {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.wpos-total-items {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 20px;
}

#wpos-submit-button {
    padding: 10px 20px;
    font-size: 1.1em;
    cursor: pointer;
}

/* Mensajes de estado */
#wpos-message-area p {
    padding: 10px;
    border-radius: 3px;
    margin: 0;
}

.wpos-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpos-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wpos-loading {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
