        /* Estilos básicos */
        /*body {*/
        /*    font-family: 'Roboto', sans-serif;*/
        /*    background-color: #f5f5f5;*/
        /*    margin: 0 auto;*/
        /*    padding: 0;*/
        /*    display: flex;*/
        /*    justify-content: center;*/
        /*    align-items: center;*/
        /*    height: 100vh;*/
        /*}*/

        .form-container {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 700px;
            width: 40%;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        input[type="text"],
        input[type="email"],
        input[type="date"],
        input[type="time"],
        input[type="number"],
        select {
            margin: 0 auto;
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 12px;
            box-sizing: border-box;
        }

        label {
            font-size: 16px;
            color: #333;
        }

        .events,
        table {
            width: 70%;
            margin-top: 20px;
            border-collapse: collapse;
            margin: 0 auto;
        }

        table, th, td {
            border: 1px solid #ddd;
        }

        th, td {
            padding: 10px;
            text-align: center;
        }

        .button-principal {
            background-color: var(--color-primary, #007bff);
            color: white;
            padding: 12px;
            width: 100%;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .button-principal:hover {
            background-color: #0056b3;
        }

        /* Estilos para las opciones de camarero */
        .options {
            display: flex;
            justify-content: flex-start;
            gap: 15px; /* Espacio entre las opciones */
        }

        .option-item {
            margin-right: 5px; /* Espaciado derecho entre el input y la etiqueta */
        }

        .error-message {
            color: red;
            font-size: 8px;
            display: none; /* Ocultar mensaje por defecto */
        }