/* RESET BÁSICO Y ESTILO GLOBAL */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000; /* Fondo global negro */
    color: #fff;            /* Texto global en blanco */
    font-family: "inter-thin", sans-serif;
    box-sizing: border-box;
 
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Aseguramos que imágenes o elementos que tengan borde usen borde blanco */
img, iframe, .some-element-with-border {
    border: 0px solid #fff;
}

/* Ejemplo de hover gris claro (puedes ajustarlo a tu preferencia #333, #444, etc.) */
a:hover, button:hover, .hoverable:hover {
    background-color: #333 !important; 
    color: #fff !important; /* Seguimos manteniendo el texto en blanco */
    cursor: pointer;
}


#dashboard-superior {
    background-color: #00000000;
    align-items: baseline;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 95%;
    border-bottom: 0px solid #11053b;
    padding: 0px; 
    margin: 15px auto;
    border-radius: 0px;
}

.pagination-dashboard-superior {
    background-color: #000000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 100px;
}

.restaurante-selecionado {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pagination-dashboard-superior .restaurante-selecionado a {
    display: flex;
    align-items: center;
    border: 5px solid #ff0000;
    border-radius: 100px;
    color: #11053b;
    background-color: #000000;
    padding: 5px 35px;
    list-style: none;
    text-decoration: none;
    margin: 0px 5px;
    color: white;
}

.restaurante-selecionado a.nombre-usuario {
    border: none;
}

.restaurante-selecionado img.maxmenu-logo {
    width: 110px;
    height: 25px;
    border: none;
}

.restaurante-selecionado img.burger , .restaurante-selecionado img.nombre-usuario{
    margin-right: 5px;
    width: 35px;
    height: 35px;
}

button.dashboard-superior-pagination-btn {
    text-align: center;
    padding: 8px 35px;
    margin: 10px 0px;
    background-color: rgb(192, 0, 0);
    border: 5px solid #f8afaf;
    color: #11053b;
    border-radius: 100px;
    list-style: none;
    text-decoration: none;
    cursor: pointer;
    font-family: "OPTICopperplate";
    font-size: 12px;
}

a:visited {
    color: inherit;
}





#dashboard-movil {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background-color: #000000;
    
}

#dashboard-movil .restaurante-selecionado a {
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 8px;
    list-style: none;
    text-decoration: none;
    margin: 0px 5px;
}

.menu-items-movil {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: calc(100vh - 75px); /* Altura total del viewport menos el header */
    top: 75px;
    right: 0;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%); /* Inicialmente fuera de la vista, a la derecha */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none; /* Para que no se pueda interactuar cuando no es visible */
    background-color: #000000;
}

.menu-items-movil.visible {
    opacity: 1;
    transform: translateX(0); /* Entra desde la derecha */
    pointer-events: auto; /* Habilita la interacción cuando es visible */
}


.menu-items-movil a {
    margin: 0px 12px;
    padding: 15px 0px;
    width: 100%;

    list-style: none;
    text-decoration: none;
    font-size: 30px;
    font-family: "Montserrat-Black";
    margin-bottom: 50px
	
}

.menu-item {

    width: 100%; /* Ancho total */
    height: 30px; /* Altura fijada */
    padding: 20px 0px; /* Espaciado interior */
    text-align: center; /* Centrar texto */
    text-decoration: none; /* Remover subrayado de enlaces */
    border-bottom: 2px solid #000000; /* Borde inferior para cada elemento */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-direction: column;
}

/* Estilos para responsividad y menú de hamburguesa */
@media screen and (max-width: 868px) {
    #dashboard-superior {
        display: none; /* Oculta el menú web en pantallas pequeñas */
    }

    #burger-menu {
        display: block; /* Muestra el botón de hamburguesa en pantallas pequeñas */
    }
}

@media screen and (min-width: 869px) {
    #dashboard-movil {
        display: none; /* Oculta el menú móvil en pantallas grandes */
    }
}

#burger-menu {
    cursor: pointer;
    /* Estilos adicionales para el botón de hamburguesa */
}

.restaurante-selecionado .burger {
    transition: transform 0.3s ease;
}

.restaurante-selecionado.active .burger {
    transform: rotate(45deg);
}


a:visited {
    color: #aaaaaa;
  }
  






















/* Contenedor principal */
.select-wrapper {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
    cursor: pointer;
    user-select: none;
    width: 120px;
    align-items: center;
    text-align: center;

}

/* Estilo de la opción seleccionada */
.selected-option img {
   background-color: #000000;
   width: 35px;
   height: 35px;
}


/* Contenedor de opciones desplegable */
.options-container {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    max-height: 350px;
    overflow-y: auto;
    z-index: 100;
    background-color: #fff;
}

/* Estilo de cada opción */
.option {
    padding: 10px 15px;
    font-size: 1rem;
    color: #333;
    transition: background-color 0.3s ease;
}

.option:hover {
    background-color: #e6e6e6;
}

.option.selected {
    background-color: #0073e6;
    color: #fff;
}
