/* --- ESTILOS GENERALES --- */
body {
   font-family: sans-serif; /* Fuente del texto */
    margin: 0; /* Margenes de la página */
    background-image: url(../imagenes/BackSuperior.jpg);
 width: 100%;
	height: 10%;
  background-size: 100% 25% ;
  background-repeat:no-repeat;
  text-align: top;
  background-position: top;
   display: flex;
   background-attachment: fixed;
}

/* --- CONTENEDOR DE MENÚ (Escritorio) --- */
.menu {
    width: 35%;
  left:65%;
 /*border: solid ;*/
	   position: fixed;
	   right: 1%;
	   top:20%;
	   z-index: 100;
    /*border: double;
    border-color: blue;*/
   text-align: center;
}

/* --- CONTENEDOR DE CONTENIDO (Escritorio) --- */
.contenido {
   width: 100%;
   position: fixed;
	   left:0%;
	   top:29%;
    height: 71%;
	   z-index: 10;
    border: none;
padding: 5px;
font: 24px/36px sans-serif;
/*border: double;
border-color: red;*/
    
}

.myBox {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- BOTÓN X (Personalizado TechWeek) --- */
.botonX {
    width: 100%;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #dfdfdd;
    background: rgba(77, 77, 77, 0.9); /* Un poco de transparencia */
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-radius: 10px;
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.botonX:hover {
    background: #1c4916;
    color: #ffffff;
    transform: scale(1.02);
}
h11 {
    display: block;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para resaltar sobre el fondo */
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* --- ADAPTACIÓN PARA DISPOSITIVOS MÓVILES --- */
@media (max-width: 850px) {
    body {
        background-image: url(../imagenes/BACKprovisional.jpeg); /* Tu imagen vertical */
        background-attachment: scroll; /* Mejor rendimiento en móviles */
    }

    .menu {
        position: relative;
        width: 90%;
        left: 5%;
        top: 20px;
        margin-bottom: 30px;
    }

    /* En móvil, el contenido ocupa casi todo el ancho */
    .contenido {
        position: relative;
        width: 95%;
        left: 3%;
        top: 0;
        margin-top: 20px;
       background: transparent; /* Fondo semi-transparente para legibilidad */
    /*backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.3);*/
        padding: 10px;
    }

    /* Ajuste para las tablas de mesas.php en móvil */
    .contenido table {
        width: 80% !important;
    }

    .contenido td {
        display: block; /* Las celdas se apilan una debajo de otra */
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .myBox {
        font-size: 0.9rem;
    }

    h11 {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 20px;
    }
}