/* Para alinear label e input horizontalmente */
.campo-flex {
    display: flex;
    align-items: center; /* Centra verticalmente label e input */
    gap: 16px;
    margin-bottom: 14px;
    width: 100%;
    justify-content: flex-start;
}

.campo-flex label {
    min-width: 160px; /* Más ancho para alinear mejor los inputs */
    margin-bottom: 0;
    text-align: right;
}
.campo-flex input {
    flex: 2;
    min-width: 0;
}
.seccionEstadoMesa input:disabled {
    color: #fff;
    background: #444;
    opacity: 1;
    
}

.seccionEstadoMesa {
    max-width: 350px;
    margin: 40px auto 0 auto;
    background: #232526;
    border-radius: 16px;
    box-shadow: 0 4px 24px #0005;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-top: 24px;

}

.seccionEstadoMesa p, .seccionEstadoMesa label {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #efb810;
    font-weight: 500;
}
.seccionEstadoMesa input, .seccionEstadoMesa button {
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    text-align: center;
  
}


.seccionEstadoMesa button {
    background: #efb810;
    color: #232526;
    font-weight: bold;
    box-shadow: 0 2px 8px #0003;
    cursor: pointer;
    transition: background 0.2s;
    width: 100px;
}

.seccionEstadoMesa button:hover {
    background: #ffd700;
}

.seccionEstadoMesa button:disabled {
    background: #888;
    color: #eee;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    border: 1px solid #bbb;
    transition: none;
}

.franja-navegacion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: #232526;
    color: #fff;
    height: 48px;
    margin-top: 60px;
    box-shadow: 0 2px 8px #0002;
    position: relative;
    z-index: 900;
}
.franja-navegacion a {
    color: #efb810;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.franja-navegacion a.activo {
    background: #efb810;
    color: #232526;
    box-shadow: 0 2px 8px #0003;
    font-weight: bold;
}

.franja-navegacion a:hover {
    background: #efb810;
    color: #232526;
    font-weight: bold;
}

.regresar-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 70px; /* Reducido de 70px a 30px */
    padding-right: 5px;
}

.regresar-container button {
    background: #efb810;
    color: #232526;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 1rem;
    box-shadow: 0 2px 8px #0003;
    cursor: pointer;
    transition: background 0.2s;
}
.regresar-container button:hover {
    background: #ffd700;
}

body {
	background-color: #0a3f10e4;
}

h3{
    color: white;
    margin-left: 10px;
}

h2{
    margin-top: 80px;
    color: white;
    font-weight: bold;
}

p{
    color: white;
    font-weight: bold;
}

.form-example {
    margin-top: 80px;
    color: white;
}

.burbuja {
    position: absolute;
    background: #222;
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 2px 8px #0008;
    pointer-events: none;
    z-index: 2000;
    white-space: nowrap;
}


.franja-superior {
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, #232526 0%, #414345 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px #0005;
}

.franja-contenido {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.franja-titulo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #efb810;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px #000a;
}

.franja-fecha-hora {
    display: flex;
    gap: 24px;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(0,0,0,0.15);
    padding: 6px 18px;
    border-radius: 8px;
    box-shadow: 0 1px 4px #0002;
}

#fechaActual, #horaActual {
    font-weight: 500;
    text-shadow: 0 1px 2px #0005;
}

.mesas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    row-gap: 70px; /* Separación vertical entre filas */
    justify-items: center;
    align-items: center;
    padding-top: 30px;
}

.mesas-grid img {
    width: 65%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px #0006;
}



