|
|
|
|
|
|
| body {
|
|
|
|
|
| font-family: sans-serif;
|
| margin: 0;
|
| padding: 10px;
|
| background-color: #f8f9fa;
|
|
|
|
|
| }
|
|
|
| .btn {
|
| padding: 8px 16px;
|
| border: none;
|
| border-radius: 5px;
|
| cursor: pointer;
|
| font-weight: bold;
|
| }
|
|
|
| .btn-block {
|
| display: block;
|
| width: 100%;
|
| }
|
|
|
| .btn-success {
|
| background-color: #28a745;
|
| color: white;
|
| }
|
|
|
| .btn-danger {
|
| background-color: #dc3545;
|
| color: white;
|
| }
|
|
|
| .btn-primary {
|
| background-color: #007bff;
|
| color: white;
|
| }
|
| .btn-warning{
|
| background-color: #ffc107;
|
| color: white;
|
| }
|
|
|
| .btn-info {
|
| background-color: #17a2b8;
|
| color: white;
|
| }
|
|
|
| .btn-outline-secondary {
|
| color: #6c757d;
|
| border: 2px solid #6c757d;
|
| }
|
|
|
| .btn-outline-danger {
|
| color: #dc3545;
|
| border: 2px solid #dc3545;
|
| }
|
|
|
| .btn-sm {
|
| padding: 5px 10px;
|
| font-size: 14px;
|
| }
|
|
|
| .text-center {
|
| text-align: center;
|
| }
|
|
|
| .mb-2 {
|
| margin-bottom: 8px;
|
| }
|
|
|
|
|
| .mesa-input {
|
| padding: 20px;
|
| border: 1px solid #ced4da;
|
| border-radius: 5px;
|
| background-color: #fff;
|
| }
|
|
|
| .mesa-controls {
|
| display: flex;
|
| align-items: center;
|
| justify-content: space-between;
|
| margin-bottom: 10px;
|
| }
|
|
|
| .mesa-number {
|
| font-size: 24px;
|
| font-weight: bold;
|
| }
|
|
|
|
|
| .mesas-container {
|
| display: grid;
|
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
| gap: 10px;
|
| }
|
|
|
| .mesa-card {
|
| border: 1px solid #ced4da;
|
| border-radius: 5px;
|
| background-color: #fff;
|
| }
|
|
|
| .mesa-card-body {
|
| padding: 15px;
|
| }
|
|
|
| .mesa-title {
|
| font-size: 18px;
|
| font-weight: bold;
|
| margin-bottom: 10px;
|
| }
|
|
|
|
|
| .mesa-heading {
|
| margin-bottom: 20px;
|
| }
|
|
|
|
|
| .pedidos-container {
|
| margin-bottom: 20px;
|
| border: 1px solid #ced4da;
|
| padding: 10px;
|
| border-radius: 5px;
|
| background-color: #f5f5f5;
|
| }
|
|
|
|
|
| .opciones-container {
|
| padding: 20px;
|
| border: 1px solid #ced4da;
|
| border-radius: 5px;
|
| background-color: #fff;
|
| }
|
|
|
| .opcion-item {
|
| display: flex;
|
| justify-content: space-between;
|
| align-items: center;
|
| margin-bottom: 10px;
|
| }
|
|
|
| .cantidad-controls {
|
| display: flex;
|
| align-items: center;
|
| }
|
|
|
| .cantidad {
|
| margin: 0 10px;
|
| font-weight: bold;
|
| }
|
|
|
|
|
| @media (max- |