   .elemento::-webkit-scrollbar {
      display: none;
    }
 
    .elemento {
      -ms-overflow-style: none;
    }

.elemento {
      scrollbar-width: none;
    }

        .elemento {
      overflow-x: hidden;
    }


 .pin-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            backdrop-filter: blur(10px);
            transition: all 0.5s ease;
        }
        
        .pin-content {
            background: transparent;
            border-radius: 20px;
            width: 90%;
            max-width: 280px; /* Reducción de 400px a 280px (30%) */
            padding: 18px; /* Reducido de 25px */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            position: relative;
            transform: translateY(0);
            transition: all 0.4s ease;
             backdrop-filter: blur(10px);
            border: 1px solid rgba(128, 128, 128, 0.2);
        }
        
        .pin-header {
            text-align: center;
            margin-bottom: 14px; /* Reducido de 20px */
        }
        
        .pin-header h1 {
            font-size: 1.25rem; /* Reducido de 1.5rem */
            margin-bottom: 8px; /* Reducido de 10px */
            background: linear-gradient(45deg, #ffffff, #fffdf9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }
        
        .pin-header p {
            font-size: 0.85rem; /* Reducido de 1rem */
            opacity: 0.8;
            color: #ccc;
            line-height: 1.4;
        }
        
        .pin-display {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 100px;
            padding: 14px; /* Reducido de 20px */
            margin: 14px 0; /* Reducido de 20px */
            text-align: center;
            height: 50px; /* Reducido de 70px */
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .pin-dots {
            display: flex;
            gap: 12px; /* Reducido de 15px */
            justify-content: center;
        }
        
        .pin-dot {
            width: 14px; /* Reducido de 20px */
            height: 14px; /* Reducido de 20px */
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.699);
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Reducido */
        }
        
        .pin-dot.filled {
            background: linear-gradient(45deg, #ffd700, #ff9d00);
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Reducido */
        }
        
        .pin-dot.filled::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px; /* Reducido de 12px */
            height: 8px; /* Reducido de 12px */
            border-radius: 50%;
            background: rgba(12, 12, 12, 0.9);
        }
        
        .pin-error {
            color: #ff5252;
            text-align: center;
            min-height: 22px; /* Reducido de 25px */
            margin: 8px 0; /* Reducido de 10px */
            font-size: 0.8rem; /* Reducido de 0.9rem */
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .pin-error.show {
            opacity: 1;
        }
        
        .pin-keyboard {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px; /* Reducido de 15px */
            margin-top: 14px; /* Reducido de 20px */
        }
        
        .pin-key {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            height: 70px; /* Reducido de 100px */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem; /* Reducido de 1.2rem */
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            position: relative;
            overflow: hidden;
            user-select: none;
        }
        
        .pin-key::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(49, 0, 1, 0.4);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .pin-key:hover::before {
            opacity: 1;
        }
        
        .pin-key:active {
            transform: scale(0.95);
            background: rgba(255, 255, 255, 0.651);
        }
        
        .pin-key.action {
            background: rgba(255, 69, 69, 0.2);
        }
        
        .pin-key.action:hover {
            background: rgba(255, 69, 69, 0.3);
        }
        
        .pin-key.enter {
            background: rgba(76, 175, 80, 0.2);
            grid-column: span 3;
            border-radius: 15px;
        }
        
        .pin-key.enter:hover {
            background: rgba(76, 175, 80, 0.3);
        }
        
        .pin-key.enter.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Animación de entrada */
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }
        
        .pin-modal.hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* Mejoras de responsividad */
        @media (max-width: 350px) {
            .pin-content {
                max-width: 95%;
                padding: 15px;
            }
            
            .pin-key {
                height: 60px;
                font-size: 1rem;
            }
            
            .pin-header h1 {
                font-size: 1.1rem;
            }
            
            .pin-header p {
                font-size: 0.8rem;
            }
        }

        @media (max-height: 600px) {
            .pin-content {
                transform: scale(0.9);
            }
            
            .pin-key {
                height: 60px;
            }
            
            .pin-display {
                height: 45px;
            }
        }
        

  /* Botón para demostración */
        .show-modal-btn {
            background: linear-gradient(45deg, #ffd700, #ff9d00);
            color: #000000ce;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .show-modal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .show-modal-btn:active {
            transform: translateY(1px);
        }
        
        .instructions {
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            padding: 0 20px;
        }


        /* Estilo para el botón de cerrar sesión */
        #logoutBtn {
            position: absolute;
            top: 5px;
            left: 2px;
            background: rgba(255, 255, 255, 0.15);
            border: 1.7px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8.5px 17px;
            border-radius: 34px;
            cursor: pointer;
            font-size: 0.7rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 2px;
            z-index: 10;
        }
        
        #logoutBtn:hover {
            background: rgba(85, 2, 2, 0.795);
            transform: translateY(-2.55px);
            box-shadow: 0 5.1px 12.75px rgba(0, 0, 0, 0.6);
        }
        
        /* Resto de estilos existentes... */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 12.2px;
        }
        
        body {
            min-height: 100vh;
            padding: 8.5px;
            color: white;
            overflow-x: hidden;
            transition: all 0.3s ease;
            scrollbar-width: none;
            -ms-overflow-style: none;
            position: relative;
        }
        
        body::-webkit-scrollbar {
            display: none;
        }
        
        body.fullscreen {
            padding: 0;
            overflow: hidden;
        }
        
        .week-menu-content {
            height: 90vh;
            width: 90%;
            max-width: 900px;
        }
        
        .week-menu-content iframe {
            border-radius: 12.75px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .close-week-menu {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            background: rgba(255,0,0,0.7);
        }
        
        .menu-option .available-count {
            font-size: 0.8em;
            margin-left: 5px;
            background: rgba(255, 255, 255, 0.1);
            padding: 2px 5px;
            border-radius: 10px;
        }
        
        .menu-option.low-availability {
            border-left: 3px solid #ff9800;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 152, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
        }
        
        .menu-option.low-availability .available-count {
            background: #ff9800;
            color: #000;
            font-weight: bold;
        }
        
        .progress-container {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin-top: 5px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
            border-radius: 4px;
            transition: width 0.5s ease;
        }
        
        .progress-bar.critical {
            background: linear-gradient(90deg, #FF9800, #FF5722);
        }
        
        /* Contador de disponibilidad */
        .available-count {
            font-size: 0.75rem;
            margin-top: 3px;
            text-align: right;
            font-weight: bold;
        }
        
        /* Estado crítico */
        .menu-option.low-availability .available-count {
            color: #FF5722;
            animation: pulse 1.5s infinite;
        }
             
        /* Capa de superposición para el gradiente */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
             background: 
                linear-gradient(rgba(56, 56, 56, 0.705), rgba(0, 0, 0, 0.815)),
                url('fondo.png'); 
             
            background-size: 200% 200%;
          
            z-index: -1;
            opacity: 0.95;
        }
        
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .container {
            max-width: 1530px;
            width: 100%;
            padding: 12.75px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 297.5px;
            gap: 17px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        body.fullscreen .container {
            max-width: 100%;
            height: 100vh;
            padding: 6.8px;
            gap: 10.2px;
        }
        
        header {
            position: relative;
            text-align: center;
            margin-bottom: 25.5px;
            padding: 17px;
            background:   linear-gradient(rgba(56, 56, 56, 0.705), rgba(0, 0, 0, 0.815)),
                url('fondo.png'); 
             
            border-radius: 12.75px;
            box-shadow: 0 6.8px 17px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            grid-column: 1 / -1;
            transition: all 0.3s ease;
        }
        
        .logo-container {
            position: absolute;
            top: 17px;
            left: 25.5px;
            display: flex;
            align-items: center;
            gap: 8.5px;
        }
        
        .logo {
            width: 40%;
            height: 14px;
            filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
        }
        
        .logo-text {
            font-size: 1rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6c6c, #fe0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 8.5px rgba(240, 182, 182, 0.5);
        }
        
        body.fullscreen header {
            margin-bottom: 12.75px;
            padding: 12.75px;
            border-radius: 10.2px;
        }
        
        #noteContainer {
            margin-top: 10px;
            padding: 8px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
        }
        
        #noteContainer label {
            font-size: 0.8rem;
            margin-bottom: 5px;
            display: block;
        }
        
        #noteInput {
            width: 100%;
            padding: 8px;
            border-radius: 5px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: white;
        }
        
        
        h1 {
            font-size: 1.105rem;
            margin-bottom: 10.2px;
            text-shadow: 0 0 10.2px rgba(255, 255, 255, 0.5);
            background: linear-gradient(45deg, #ffffff, #ffd4d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s infinite alternate;
            transition: all 0.3s ease;
        }
        
        h3 {
            color: #fff;
        }
        
        body.fullscreen h1 {
            font-size: 1.87rem;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 4.25px #fff; }
            to { text-shadow: 0 0 12.75px #fff, 0 0 21.25px #300000; }
        }
        
        .subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 21.25px;
            max-width: 510px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
            transition: all 0.3s ease;
        }
        
        body.fullscreen .subtitle {
            font-size: 0.8075rem;
            margin-bottom: 12.75px;
        }
        
        .search-container {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 34px;
            padding: 10.2px 17px;
            max-width: 595px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
            box-shadow: 0 3.4px 12.75px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        body.fullscreen .search-container {
            max-width: 72.25%;
            padding: 8.5px 12.75px;
        }
        
        .search-container:focus-within {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 5.1px 17px rgba(0, 0, 0, 0.3);
            transform: translateY(-1.7px);
        }
        
        .search-container:hover {
            background: rgb(68, 1, 1);
            box-shadow: 0 5.1px 17px rgba(0, 0, 0, 0.3);
            transform: translateY(-1.7px);
        }
        
        .search-box {
            display: flex;
            align-items: center;
        }
        
        #searchInput {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            font-size: 0.85rem;
            padding: 6.8px 10.2px;
            outline: none;
        }
        
        #searchInput::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-icon {
            font-size: 1.105rem;
            color: rgba(255, 255, 255, 0.8);
            margin-right: 10.2px;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 12.75px;
            margin-top: 21.25px;
            flex-wrap: wrap;
        }
        
        body.fullscreen .controls {
            margin-top: 12.75px;
            gap: 10.2px;
        }
        
        button {
            background: rgba(255, 255, 255, 0.15);
            border: 1.7px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8.5px 17px;
            border-radius: 34px;
            cursor: pointer;
            font-size: 0.8075rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 6.8px;
        }
        
        body.fullscreen button {
            padding: 6.8px 13.6px;
            font-size: 0.765rem;
        }
        
        button:hover {
            background: rgba(85, 2, 2, 0.795);
            transform: translateY(-2.55px);
            box-shadow: 0 5.1px 12.75px rgba(0, 0, 0, 0.6);
            margin-bottom: 17px;
        }
        
        .counter {
            text-align: center;
            margin: 21.25px 0;
            font-size: 0.935rem;
            background: rgba(0, 0, 0, 0.3);
            padding: 8.5px 21.25px;
            border-radius: 34px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        body.fullscreen .counter {
            margin: 12.75px 0;
            padding: 6.8px 12.75px;
            font-size: 0.8075rem;
        }
        
        .counter span {
            font-weight: bold;
            color: #00f2fe;
            font-size: 1.105rem;
        }
        
        body.fullscreen .counter span {
            font-size: 0.935rem;
        }
        
        .user-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(144.5px, 1fr));
            gap: 12.75px;
            margin-top: 12.75px;
        }
        
        body.fullscreen .user-grid {
            grid-template-columns: repeat(auto-fill, minmax(127.5px, 1fr));
            gap: 10.2px;
        }
        
        .user-card {
            background: rgba(0, 0, 0, 0.226);
            border-radius: 10.2px;
            overflow: hidden;
            box-shadow: 0 6.8px 12.75px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.267);
            padding: 12.75px;
            text-align: center;
            position: relative;
            min-height: 170px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            cursor: pointer;
            animation: fadeIn 0.6s forwards;
            opacity: 0;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(12.75px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .user-card:hover {
            transform: translateY(-10.8px);
            box-shadow: 0 10.2px 21.25px rgba(0, 0, 0, 0.8);
            background: rgba(121, 0, 0, 0.575);
          
        }
        
        .user-card.reserved {
            background: rgba(76, 175, 80, 0.2);
            border: 1px solid rgba(76, 175, 80, 0.4);
        }
        
        .user-card.reserved .user-name::after {
            content: "✓";
            color: #4CAF50;
            margin-left: 5.1px;
            font-size: 1.105rem;
        }
        
        .avatar-container {
            position: relative;
            width: 68px;
            height: 68px;
            margin: 0 auto 10.2px;
        }
        
        body.fullscreen .avatar-container {
            width: 59.5px;
            height: 59.5px;
        }
        
        .user-avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 1.7px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 3.4px 10.2px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }
        
        .user-card:hover .user-avatar {
            transform: scale(1.068);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 5.1px 12.75px rgba(0, 0, 0, 0.4);
        }
        
        .user-info {
            padding: 0 6.8px;
        }
        
        .user-id {
            font-size: 0.98rem;
            opacity: 0.9;
            margin-bottom: 5.1px;
            background: rgba(0, 0, 0, 0.2);
            display: inline-block;
            padding: 2.55px 8.5px;
            border-radius: 12.75px;
            font-weight: 600;
        }
        
        .user-name {
            font-size: 0.9075rem;
            font-weight: 600;
            margin-bottom: 6.8px;
            line-height: 1.3;
            min-height: 2.21rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 3.4px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        body.fullscreen .user-name {
            font-size: 0.7225rem;
            min-height: 2.04rem;
        }
        
        .user-title {
            font-size: 0.68rem;
            opacity: 0.9;
            font-style: italic;
            margin-bottom: 8px;
            color: #ff8282;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .reservations-panel {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12.75px;
            padding: 17px;
            backdrop-filter: blur(10px);
            box-shadow: 0 6.8px 21.25px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-height: 155vh;
            overflow-y: auto;
            transition: all 0.3s ease;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .reservations-panel::-webkit-scrollbar {
            display: none;
        }
        
        body.fullscreen .reservations-panel {
            max-height: calc(100vh - 136px);
            padding: 12.75px;
        }
        
        .panel-header {
            text-align: center;
            margin-bottom: 17px;
            padding-bottom: 10.2px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        body.fullscreen .panel-header {
            margin-bottom: 12.75px;
        }
        
        .panel-header h2 {
            font-size: 1.36rem;
            margin-bottom: 6.8px;
            background: linear-gradient(45deg, #f4feff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
         
        body.fullscreen .panel-header h2 {
            font-size: 1.19rem;
        }
        
        .today-menu {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10.2px;
            padding: 12.75px;
            margin-bottom: 17px;
            position: relative;
        }
        
        body.fullscreen .today-menu {
            padding: 10.2px;
            margin-bottom: 12.75px;
        }
        
        .menu-title {
            font-size: 0.935rem;
            margin-bottom: 10.2px;
            text-align: center;
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8.5px;
        }
        
        body.fullscreen .menu-title {
            font-size: 0.8075rem;
            margin-bottom: 8.5px;
        }
        
        .week-menu-btn {
            font-size:  15px;
            background: rgba(134, 0, 0, 0.836);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6.8px;
            padding: 10.25px 16.5px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .week-menu-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1.7px);
        }
        
        .menu-option {
            display: flex;
            align-items: center;
            padding: 8.5px;
            margin-bottom: 6.8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6.8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        body.fullscreen .menu-option {
            padding: 6.8px;
        }
        
        .menu-option:hover {
            background: rgba(131, 0, 0, 0.644);
             transform: translateY(-3.55px);
        }
        
        .menu-option.selected {
            background: rgba(79, 172, 254, 0.3);
            border: 1px solid rgba(79, 172, 254, 0.5);
        }
        
        .menu-option .icon {
            width: 29.75px;
            height: 29.75px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10.2px;
            font-size: 0.85rem;
        }
        
        body.fullscreen .menu-option .icon {
            width: 25.5px;
            height: 25.5px;
            font-size: 0.765rem;
        }
        
        .menu-option .info {
            flex: 1;
        }
        
        .menu-option .name {
            font-weight: 600;
            margin-bottom: 2.55px;
        }
        
        body.fullscreen .menu-option .name {
            font-size: 0.7225rem;
        }
        
        .menu-option .details {
            font-size: 0.78rem;
            opacity: 0.8;
        }
        
        body.fullscreen .menu-option .details {
            font-size: 0.7375rem;
        }
        
        .reservation-form {
            margin-bottom: 17px;
        }
        
        body.fullscreen .reservation-form {
            margin-bottom: 12.75px;
        }
        
        .selected-user {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10.2px;
            padding: 10.2px;
            margin-bottom: 12.75px;
            text-align: center;
            min-height: 85px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .selected-user .avatar {
            width: 42.5px;
            height: 42.5px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 6.8px;
            border: 1.7px solid rgba(255, 255, 255, 0.3);
        }
        
        body.fullscreen .selected-user .avatar {
            width: 38.25px;
            height: 38.25px;
        }
        
        .selected-user .name {
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        body.fullscreen .selected-user .name {
            font-size: 0.8075rem;
        }
        
        .time-selection {
            margin: 12.75px 0;
            text-align: center;
        }
        
        .time-title {
            font-size: 0.85rem;
            margin-bottom: 6.8px;
            color: #fa6969;
        }
        
        body.fullscreen .time-title {
            font-size: 0.765rem;
        }
        
        .time-options {
            display: flex;
            justify-content: center;
            gap: 6.8px;
            flex-wrap: wrap;
        }
        
        .time-option {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6.8px;
            padding: 6.8px 10.2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        body.fullscreen .time-option {
            padding: 5.1px 8.5px;
            font-size: 0.7225rem;
        }
        
        .time-option:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .time-option.selected {
            background: rgba(254, 79, 79, 0.3);
            border: 1px solid rgba(216, 237, 255, 0.5);
        }
        
        .btn-reserve {
            width: 100%;
            padding: 10.2px;
            background: linear-gradient(45deg, #fe4f4f, #fe0000);
            border: none;
            border-radius: 34px;
            color: white;
            font-size: 0.935rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3.4px 10.2px rgba(0, 0, 0, 0.2);
        }
        
        body.fullscreen .btn-reserve {
            padding: 8.5px;
            font-size: 0.85rem;
        }
        
        .btn-reserve:hover {
            transform: translateY(-1.7px);
            box-shadow: 0 5.1px 12.75px rgba(0, 0, 0, 0.3);
        }
        
        .btn-reserve:disabled {
            background: rgba(255, 255, 255, 0.1);
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 6.8px 17px rgba(0, 0, 0, 0.3);
        }
        
        .reservations-list {
            margin-top: 17px;
        }
        
        body.fullscreen .reservations-list {
            margin-top: 12.75px;
        }
        
        .reservations-title {
            font-size: 0.935rem;
            margin-bottom: 10.2px;
            text-align: center;
            color: #ffd700;
        }
        
        body.fullscreen .reservations-title {
            font-size: 0.8075rem;
        }
        
        .reservation-item {
            display: flex;
            align-items: center;
            padding: 8.5px;
            margin-bottom: 6.8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6.8px;
        }
        
        body.fullscreen .reservation-item {
            padding: 6.8px;
        }
        
        .reservation-item .avatar {
            width: 29.75px;
            height: 29.75px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 10.2px;
            border: 1.7px solid rgba(255, 255, 255, 0.3);
        }
        
        body.fullscreen .reservation-item .avatar {
            width: 25.5px;
            height: 25.5px;
            margin-right: 6.8px;
        }
        
        .reservation-item .info {
            flex: 1;
        }
        
        .reservation-item .name {
            font-weight: 600;
            margin-bottom: 2.55px;
            line-height: 1.3;
            max-height: 2.04rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        body.fullscreen .reservation-item .name {
            font-size: 0.7225rem;
        }
        
        .reservation-item .details {
            font-size: 0.7225rem;
            opacity: 0.8;
            display: flex;
            flex-wrap: wrap;
            gap: 6.8px;
        }
        
        body.fullscreen .reservation-item .details {
            font-size: 0.68rem;
        }
        
        .reservation-item .detail {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.7px 5.1px;
            border-radius: 6.8px;
            font-size: 0.68rem;
        }
        
        body.fullscreen .reservation-item .detail {
            font-size: 0.6375rem;
        }
        
        .reservation-item .delete {
            background: rgba(255, 0, 0, 0.2);
            border: none;
            color: #ff5252;
            width: 25.5px;
            height: 25.5px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .reservation-item .delete:hover {
            background: rgba(255, 0, 0, 0.3);
        }
        
        .email-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .email-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .email-content {
            background: linear-gradient(135deg, #2c2323bd, #410a0ad5);
            border-radius: 12.75px;
            width: 90%;
            max-width: 467.5px;
            padding: 21.25px;
            box-shadow: 0 12.75px 34px rgba(0, 0, 0, 0.5);
            position: relative;
            transform: translateY(21.25px);
            transition: all 0.4s ease;
        }
        
        .email-modal.active .email-content {
            transform: translateY(0);
        }
        
        .email-header {
            text-align: center;
            margin-bottom: 17px;
        }
        
        .email-header h3 {
            font-size: 1.36rem;
            margin-bottom: 6.8px;
            background: linear-gradient(45deg, #f4feff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
         
        .email-body {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10.2px;
            padding: 17px;
            margin-bottom: 17px;
        }
        
        .email-row {
            display: flex;
            margin-bottom: 10.2px;
            padding-bottom: 10.2px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .email-label {
            font-weight: 600;
            width: 85px;
            color: #ffd700;
        }
        
        .email-value {
            flex: 1;
            font-size: 0.8075rem;
        }
        
        .btn-close {
            position: absolute;
            top: 12.75px;
            right: 12.75px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 29.75px;
            height: 29.75px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.935rem;
        }
        
        .btn-send {
            width: 100%;
            padding: 10.2px;
            background: linear-gradient(45deg, #fe4f4f, #330303);
            border: none;
            border-radius: 34px;
            color: white;
            font-size: 0.935rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3.4px 10.2px rgba(0, 0, 0, 0.2);
        }
        
        .btn-send:hover {
            transform: translateY(-1.7px);
            box-shadow: 0 5.1px 12.75px rgba(0, 0, 0, 0.3);
        }
        
        .no-results, .no-reservation {
            text-align: center;
            padding: 12.75px;
            font-size: 0.765rem;
            opacity: 0.8;
            animation: fadeIn 0.6s forwards;
        }
        
        .notification {
            position: fixed;
            top: 12.75px;
            right: 12.75px;
            background: rgba(76, 175, 80, 0.9);
            color: white;
            padding: 10.2px 17px;
            border-radius: 6.8px;
            box-shadow: 0 3.4px 10.2px rgba(0, 0, 0, 0.3);
            transform: translateX(150%);
            transition: transform 0.4s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 6.8px;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .password-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .password-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .password-content {
            background: linear-gradient(135deg, #2b2b2b, #363636a6);
            border-radius: 12.75px;
            width: 90%;
            max-width: 382.5px;
            padding: 21.25px;
            box-shadow: 0 12.75px 34px rgba(0, 0, 0, 0.5);
            position: relative;
            transform: translateY(21.25px);
            transition: all 0.4s ease;
        }
        
        .password-modal.active .password-content {
            transform: translateY(0);
        }
        
        .password-header {
            text-align: center;
            margin-bottom: 17px;
        }
        
        .password-header h3 {
            font-size: 1.36rem;
            color:#fff;
            margin-bottom: 6.8px;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .password-body {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10.2px;
            padding: 17px;
            margin-bottom: 17px;
        }
        
        .password-input {
            width: 100%;
            padding: 8.5px 12.75px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6.8px;
            color: white;
            font-size: 0.85rem;
            margin: 10.2px 0;
            outline: none;
        }
        
        .password-input:focus {
            border-color: #4facfe;
        }
        
        /* Estilos para el reloj */
        .clock-container {
            position: absolute;
            top: 12.75px;
            right: 12.75px;
            background: rgba(255, 255, 255, 0.1);
            padding: 10.2px 17px;
            border-radius: 10.2px;
            backdrop-filter: blur(10px);
            box-shadow: 0 3.4px 10.2px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.02rem;
            display: flex;
            align-items: center;
            gap: 10.2px;
            transition: all 0.3s ease;
        }
        
        body.fullscreen .clock-container {
            top: 10.2px;
            right: 10.2px;
            padding: 8.5px 12.75px;
            font-size: 0.85rem;
        }
        
        .clock-icon {
            color: #ffffff;
            font-size: 0.935em;
        }
        
        .clock-display {
            font-family: 'Courier New', monospace;
            font-weight: 600;
            letter-spacing: 0.85px;
            text-shadow: 0 0 6.8px rgba(254, 79, 79, 0.7);
            background: linear-gradient(45deg, #fe4f4f, #fe0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .reservations-panel {
                max-height: none;
            }
        }
        
        @media (max-width: 768px) {
            .user-grid {
                grid-template-columns: repeat(auto-fill, minmax(110.5px, 1fr));
            }
            
            h1 {
                font-size: 1.87rem;
            }
            
            .clock-container {
                position: relative;
                top: auto;
                right: auto;
                margin: 10.2px auto 0;
                max-width: 212.5px;
            }
        }
        
        @media (max-width: 480px) {
            .user-grid {
                grid-template-columns: repeat(auto-fill, minmax(93.5px, 1fr));
            }
            
            h1 {
                font-size: 1.53rem;
            }
            
            .controls {
                flex-direction: column;
                align-items: center;
            }
            
            button {
                width: 100%;
                max-width: 212.5px;
                justify-content: center;
            }
            
            .time-options {
                flex-direction: column;
            }
            
            .clock-container {
                padding: 6.8px 12.75px;
                font-size: 0.85rem;
                gap: 6.8px;
            }
            
            .pin-key {
                height: 60px;
                font-size: 1.3rem;
            }
        }
        
        /* Animación para resaltar */
        @keyframes highlightPulse {
            0% { box-shadow: 0 0 0 0 rgba(254, 79, 79, 0.7); }
            70% { box-shadow: 0 0 0 6.8px rgba(79, 172, 254, 0); }
            100% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0); }
        }
        
        .highlight {
            animation: highlightPulse 2s;
        }
        
        /* Animación para el reloj */
        @keyframes clockPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.0255); }
            100% { transform: scale(1); }
        }
        
        .clock-container {
            animation: clockPulse 2s infinite;
        }
        
        /* Modal para menús semanales */
        .week-menu-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .week-menu-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .week-menu-content {
            background: linear-gradient(135deg, #292929, #131313d5);
            border-radius: 12.75px;
            width: 90%;
            max-width: 680px;
            padding: 21.25px;
            box-shadow: 0 17px 42.5px rgba(0, 0, 0, 0.7);
            position: relative;
            transform: translateY(25.5px);
            transition: all 0.4s ease;
        }
        
        .week-menu-modal.active .week-menu-content {
            transform: translateY(0);
        }
        
        .week-menu-header {
            text-align: center;
            margin-bottom: 17px;
            padding-bottom: 12.75px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .week-menu-header h3 {
            font-size: 1.53rem;
            margin-bottom: 8.5px;
            background: linear-gradient(45deg, #ffd700, #ff9d00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .week-menu-days {
            display: flex;
            justify-content: center;
            gap: 8.5px;
            margin-bottom: 21.25px;
            flex-wrap: wrap;
        }
        
        .day-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8.5px;
            padding: 8.5px 17px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #e4e3e1;
            font-weight: 600;
        }
        
        .day-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .day-btn.active {
            background: rgba(255, 215, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.5);
        }
        
        .week-menu-container {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12.75px;
            padding: 17px;
            max-height: 340px;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .week-menu-container::-webkit-scrollbar {
            display: none;
        }
        
        .day-menu-title {
            text-align: center;
            font-size: 1.19rem;
            margin-bottom: 17px;
            color: #b49689;
        }
        
        .day-menu-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 12.75px;
        }
        
        .day-menu-option {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8.5px;
            padding: 12.75px;
            transition: all 0.3s ease;
        }
        
        .day-menu-option:hover {
            background: rgba(104, 0, 0, 0.884);
            transform: translateY(-4.25px);
        }
        
        .day-menu-option .icon {
            font-size: 1.7rem;
            color: #ffffff;
            text-align: center;
            margin-bottom: 8.5px;
        }
        
        .day-menu-option .name {
            font-weight: 600;
            text-align: center;
            margin-bottom: 4.25px;
            font-size: 0.935rem;
        }
        
        .day-menu-option .details {
            font-size: 0.765rem;
            opacity: 0.8;
            text-align: center;
        }
        
        .close-week-menu {
            position: absolute;
            top: 17px;
            right: 17px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.02rem;
        }

        /* Modal para historial de reservas */
        .history-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .history-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .history-content {
            background: linear-gradient(135deg, #8d2121d0, #3f0a0ad0, #030000ef);
            border-radius: 12.75px;
            width: 90%;
            max-width: 850px;
            padding: 21.25px;
            box-shadow: 0 17px 42.5px rgba(0, 0, 0, 0.7);
            position: relative;
            transform: translateY(25.5px);
            transition: all 0.4s ease;
            max-height: 80vh;
            display: flex;
            flex-direction: column;
        }
        
        .history-modal.active .history-content {
            transform: translateY(0);
        }
        
        .history-header {
            color: #ffffff;
            text-align: center;
            margin-bottom: 17px;
            padding-bottom: 12.75px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .history-header h3 {
            font-size: 1.53rem;
            color: #ffffff;
            margin-bottom: 8.5px;
            background: linear-gradient(45deg, #252525af, #373f3f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .history-controls {
            display: flex;
            gap: 8.5px;
            margin-bottom: 17px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .history-controls input {
            background: rgba(8, 8, 8, 0.445);
            border: 1px solid rgba(255, 255, 255, 0.349);
            border-radius: 8.5px;
            padding: 8.5px 12.75px;
            color: white;
            outline: none;
        }
        
        .history-controls input:focus {
            border-color: #ffffff;
        }
        
        .history-container {
            background: rgba(53, 53, 53, 0.199);
            filter: blur(.3);
            border-radius: 12.75px;
            padding: 17px;
            flex: 1;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
             box-shadow: 0 17px 42.5px rgba(0, 0, 0, 0.7);
        }
        
        .history-container::-webkit-scrollbar {
            display: none;
        }
        
        .history-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }
        
        .history-table th {
            background: rgba(79, 172, 254, 0.3);
            padding: 8.5px;
            text-align: left;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .history-table td {
            padding: 8.5px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .history-table tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .history-table tr:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .history-avatar {
            width: 29.75px;
            height: 29.75px;
            border-radius: 50%;
            object-fit: cover;
            border: 1.7px solid rgba(255, 255, 255, 0.3);
        }
        
        .no-history {
            text-align: center;
            padding: 17px;
            font-size: 0.935rem;
            opacity: 0.8;
        }
        
        .close-history {
            position: absolute;
            top: 17px;
            right: 17px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.02rem;
        }

        /* Modal para usuario invitado */
        .guest-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .guest-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .guest-content {
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            padding: 25px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .guest-modal.active .guest-content {
            transform: translateY(0);
        }
        
        .guest-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .guest-header h1 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #ffd700, #ff9d00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .guest-header p {
            font-size: 1rem;
            opacity: 0.8;
            color: #ccc;
        }
        
        .guest-input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            margin-bottom: 20px;
            outline: none;
        }
        
        .guest-input:focus {
            border-color: #4facfe;
        }
        
        .guest-footer {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }
        
        .guest-btn {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .guest-btn.cancel {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .guest-btn.confirm {
            background: linear-gradient(45deg, #fe4f4f, #fe0000);
            color: white;
        }
        
        .guest-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
