/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-k9nbz2pu0o] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-k9nbz2pu0o] {
    flex: 1;
}

.sidebar[b-k9nbz2pu0o] {
    background-image: linear-gradient(180deg, #060f29 30%, #3e66ae 70%);
    margin: 0; /* Elimina m�rgenes externos */
    padding: 0; /* Elimina paddings internos */
}

.top-row[b-k9nbz2pu0o] {
    background-color: #060f29;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-k9nbz2pu0o]  a, .top-row[b-k9nbz2pu0o]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-k9nbz2pu0o]  a:hover, .top-row[b-k9nbz2pu0o]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-k9nbz2pu0o]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 641px) {
    .top-row[b-k9nbz2pu0o] {
        justify-content: space-between;
    }

    .top-row[b-k9nbz2pu0o]  a, .top-row[b-k9nbz2pu0o]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-k9nbz2pu0o] {
        flex-direction: row;
    }

    .sidebar[b-k9nbz2pu0o] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-k9nbz2pu0o] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-k9nbz2pu0o]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-k9nbz2pu0o] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }   
    .article[b-k9nbz2pu0o] {
        /*padding-left: 2rem !important;*/
        /*padding-right: 0*//*rem !important;*/
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-p38z78fczt] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-p38z78fczt] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-p38z78fczt] {
    font-size: 1.1rem;
}

.bi[b-p38z78fczt] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}



.nav-item[b-p38z78fczt] {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-p38z78fczt] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-p38z78fczt] {
        padding-bottom: 1rem;
    }

    .nav-item[b-p38z78fczt]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-p38z78fczt]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-p38z78fczt]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-p38z78fczt] {
        display: none;
    }

    .collapse[b-p38z78fczt] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-p38z78fczt] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Cesta.razor.rz.scp.css */
@keyframes typing-b-mugu9frqtf {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Hace el cursor transparente al final de la animación */
    }
}

.cesta-container[b-mugu9frqtf] {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Times New Roman', serif;
}

.cesta-title[b-mugu9frqtf] {
    text-align: center;
    display: inline-block;
    font-size: 3rem; /* Ajusta según sea necesario para los títulos de categoría */
    margin: 40px 0 20px;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    border-right: .15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-mugu9frqtf 3.5s steps(30, end) forwards;
}

.cesta-item[b-mugu9frqtf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

    .cesta-item:last-child[b-mugu9frqtf] {
        border-bottom: none;
    }

.cesta-item-details[b-mugu9frqtf] {
    flex-grow: 1;
    padding: 0 10px;
}

.cesta-item-name[b-mugu9frqtf] {
    font-size: 1.2rem;
    color: #333;
}

.cesta-item-price[b-mugu9frqtf] {
    font-size: 1rem;
    color: #666;
}

.cesta-item-control[b-mugu9frqtf] {
    display: flex;
    align-items: center;
}

.cesta-item-quantity[b-mugu9frqtf] {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    font-size: 1rem;
    color: #333;
}

.button-cesta[b-mugu9frqtf] {
    padding: 5px 10px;
    color: white;
    background-color: #3e66ae;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .button-cesta:hover[b-mugu9frqtf] {
        background-color: #0056b3;
    }

.cesta-summary[b-mugu9frqtf] {
    text-align: right;
    font-size: 1.2rem;
    padding: 10px 0;
    color: #333;
}

.cesta-checkout-btn[b-mugu9frqtf] {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .cesta-checkout-btn:hover[b-mugu9frqtf] {
        background-color: #45a049;
    }
.button-pedido[b-mugu9frqtf] {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
}

    .button-pedido:hover[b-mugu9frqtf] {
        background-color: #45a049;
    }
/* /Pages/DetallePedidoRecogerPage.razor.rz.scp.css */
@keyframes typing-b-t11yk52bml {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Cursor transparente al final de la animación */
    }
}

.page-title[b-t11yk52bml] {
    position: relative;
    text-align: center;
    font-size: 2rem; /* Tamaño grande para escritorio */
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    z-index: 3;
    border-right: .15em solid #3e66ae; /* Visible durante la animación */
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-t11yk52bml 3.5s steps(30, end) forwards;
}

.detail-container[b-t11yk52bml] {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

h3[b-t11yk52bml] {
    color: #34495e;
    font-size: 2rem; /* Tamaño adecuado para títulos de sección */
    margin-bottom: 10px;
}

ul[b-t11yk52bml] {
    list-style-type: none;
    padding: 0;
}

li[b-t11yk52bml] {
    background-color: #f4f4f4;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

p[b-t11yk52bml] {
    color: #34495e; /* Más oscuro para mejor legibilidad */
    font-size: 1.1rem; /* Tamaño ajustado */
    margin: 5px 0;
}

strong[b-t11yk52bml] {
    color: #2c3e50;
}
/* /Pages/DetallePedidoReservaPage.razor.rz.scp.css */
@keyframes typing-b-r8i80peqsi {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Cursor transparente al final de la animación */
    }
}

.page-title[b-r8i80peqsi] {
    position: relative;
    text-align: center;
    font-size: 2rem; /* Tamaño grande para escritorio */
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    z-index: 3;
    border-right: .15em solid #3e66ae; /* Visible durante la animación */
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-r8i80peqsi 3.5s steps(30, end) forwards;
}

.detail-container[b-r8i80peqsi] {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

h3[b-r8i80peqsi] {
    color: #34495e;
    font-size: 2rem; /* Tamaño adecuado para títulos de sección */
    margin-bottom: 10px;
}

ul[b-r8i80peqsi] {
    list-style-type: none;
    padding: 0;
}

li[b-r8i80peqsi] {
    background-color: #f4f4f4;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

p[b-r8i80peqsi] {
    color: #34495e; /* Más oscuro para mejor legibilidad */
    font-size: 1.1rem; /* Tamaño ajustado */
    margin: 5px 0;
}

strong[b-r8i80peqsi] {
    color: #2c3e50;
}
/* /Pages/FinalizarPedido.razor.rz.scp.css */
body[b-c5olyqjycg] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

h3.welcome-title[b-c5olyqjycg] {
    text-align: center;
    margin-top: 20px;
    font-size: 2.5rem;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    animation: typing-b-c5olyqjycg 3.5s steps(40, end) forwards;
    border-right: 0.15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing-b-c5olyqjycg {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

div[b-c5olyqjycg] {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

label[b-c5olyqjycg], select[b-c5olyqjycg], input[type="date"][b-c5olyqjycg], input[type="time"][b-c5olyqjycg] {
    display: block;
    margin: 10px 0;
    width: 100%;
}

input[type="date"][b-c5olyqjycg], input[type="time"][b-c5olyqjycg], select[b-c5olyqjycg] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.toggle-button[b-c5olyqjycg] {
    display: inline-block; /* Smaller and centered */
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin: 0 auto;
    border-radius: 4px;
    font-size: 0.9rem;
}

.toggle-container[b-c5olyqjycg] {
    text-align: center;
    margin-bottom: 20px;
}

button[b-c5olyqjycg] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    display: block;
}

    button:hover[b-c5olyqjycg] {
        background-color: #e38800;
    }

.buttonAcceptar[b-c5olyqjycg] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    display: block;
}

    .buttonAcceptar:hover[b-c5olyqjycg] {
        background-color: #45a049;
    }

.error-message[b-c5olyqjycg] {
    color: #b30000;
    background-color: #ffe6e6;
    border-left: 5px solid #b30000;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.success-message[b-c5olyqjycg] {
    color: #004d00;
    background-color: #e6ffe6;
    border-left: 5px solid #004d00;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}
/* /Pages/Home.razor.rz.scp.css */
body[b-k7v6skk2lj] {
    margin: 0;
    padding: 0; /* También puedes resetear el padding por si acaso */
}

.hero-section[b-k7v6skk2lj] {
    position: relative;
    text-align: center;
    color: white;
    height: 50vh; /* Altura para versiones de escritorio */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto parallax */
    transition: background-image 1s ease-in-out;
}

/* Estilos para los fondos del hero */
.hero-bg-1[b-k7v6skk2lj] {
    background-image: url('Images/cabecera.png');
}

.hero-bg-2[b-k7v6skk2lj] {
    background-image: url('Images/cabecera2.png');
}

.hero-bg-3[b-k7v6skk2lj] {
    background-image: url('Images/cabecera3.png');
}

.hero-bg-4[b-k7v6skk2lj] {
    background-image: url('Images/cabecera4.png');
}

.wave[b-k7v6skk2lj] {
    position: relative;
    margin-top: -25vh; /* Ajusta este valor para la altura de tu ola SVG */
    transform: rotate(180deg);
    overflow: hidden;
    z-index: 2;
}

.welcome-title[b-k7v6skk2lj] {
    position: relative;
    text-align: center;
    font-size: 5.5rem; /* Tamaño grande para escritorio */
    margin: -90px 0 20px; /* Ajusta el espacio arriba y abajo */
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    z-index: 3;
    border-right: .15em solid #3e66ae; /* Visible durante la animación */
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-k7v6skk2lj 3.5s steps(30, end) forwards;
}

@keyframes typing-b-k7v6skk2lj {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Cursor transparente al final de la animación */
    }
}

.description[b-k7v6skk2lj] {
    font-size: 3rem; /* Tamaño de la fuente para escritorio */
    color: #3e66ae;
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif;
}

.image-section[b-k7v6skk2lj] {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    flex-wrap: wrap;
}

.image-container[b-k7v6skk2lj] {
    text-align: center;
    flex-basis: 30%;
    margin: 20px;
}

    .image-container img[b-k7v6skk2lj] {
        width: 100%; /* Tamaño de la imagen ajustable */
        height: auto;
        border-radius: 8px;
    }

.order-button[b-k7v6skk2lj] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1rem;
}

    .order-button:hover[b-k7v6skk2lj] {
        background-color: #0056b3;
    }

.image-as-button:hover[b-k7v6skk2lj] {
    opacity: 0.8;
    cursor: pointer;
}

/* Media queries para ajustar estilos en dispositivos móviles */
@media (max-width: 1582px) {
    /* Ajustar el hero-section para dispositivos móviles */
    .hero-section[b-k7v6skk2lj] {
        height: 30vh;
    }

    /* Ajustar el título para dispositivos móviles */
    .welcome-title[b-k7v6skk2lj] {
        font-size: 1.7rem;
        margin: 10px 0; /* Reduce el espacio negativo y añade espacio arriba */
        padding: 0 20px; /* Evita que el texto toque los bordes */
    }

    /* Ocultar la ola SVG en dispositivos móviles */
    .wave[b-k7v6skk2lj] {
        display: none;
    }

    /* Ajustar el tamaño de la descripción para dispositivos móviles */
    .description[b-k7v6skk2lj] {
        font-size: 1.5rem;
    }

    /* Hacer que las imágenes se muestren una debajo de otra en móviles */
    .image-section[b-k7v6skk2lj] {
        flex-direction: column;
        align-items: center; /* Centrar las imágenes */
    }

    .image-container[b-k7v6skk2lj] {
        flex-basis: 100%; /* Las imágenes toman todo el ancho disponible */
        max-width: 300px; /* Máximo ancho de las imágenes */
        margin: 10px; /* Espacio alrededor de las imágenes */
    }

    /* Ajustar el tamaño y estilo de los botones */
    .order-button[b-k7v6skk2lj] {
        font-size: 0.8rem; /* Más pequeño para móviles */
        padding: 5px 15px; /* Menor padding */
    }
}
/* /Pages/Login.razor.rz.scp.css */
.login-title[b-7dprjpgb3i] {
    text-align: center;
    margin-bottom: 20px;
    color: #3e66ae;
    font-size: 2rem;
}

.login-form[b-7dprjpgb3i] {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-button[b-7dprjpgb3i] {
    width: 100%;
    margin-top: 20px;
}

    .login-button:hover[b-7dprjpgb3i] {
        background-color: #0056b3;
    }

.form-label[b-7dprjpgb3i] {
    color: #3e66ae;
    font-weight: bold;
}

.form-control[b-7dprjpgb3i] {
    border-radius: 5px;
}

.alert[b-7dprjpgb3i] {
    margin-top: 20px;
}
/* /Pages/Menu.razor.rz.scp.css */
@keyframes typing-b-31qrvtsmv1 {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Hace el cursor transparente al final de la animación */
    }
}

.category-title[b-31qrvtsmv1] {
    text-align: center;
    display: inline-block;
    font-size: 3rem; /* Ajusta según sea necesario para los títulos de categoría */
    margin: 40px 0 20px;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    border-right: .15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-31qrvtsmv1 3.5s steps(30, end) forwards;
}

.productos-container[b-31qrvtsmv1] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

.producto-card[b-31qrvtsmv1] {
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    .producto-card img[b-31qrvtsmv1] {
        display: block;
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

.producto-overlay[b-31qrvtsmv1] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-card:hover .producto-overlay[b-31qrvtsmv1] {
    visibility: visible;
    opacity: 1;
}

.producto-info[b-31qrvtsmv1] {
    text-align: center;
    padding: 10px;
}

    .producto-info h3[b-31qrvtsmv1], .producto-info p[b-31qrvtsmv1] {
        margin: 5px 0;
    }
/* /Pages/Pedido.razor.rz.scp.css */
@keyframes typing-b-acz3e8dt5w {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Hace el cursor transparente al final de la animación */
    }
}

.categoria-container[b-acz3e8dt5w] {
    margin-top: 30px;
}

.category-title[b-acz3e8dt5w] {
    text-align: center;
    display: inline-block;
    font-size: 3rem; /* Ajusta según sea necesario para los títulos de categoría */
    margin: 40px 0 20px;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    border-right: .15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-acz3e8dt5w 3.5s steps(30, end) forwards;
}

.productos-container[b-acz3e8dt5w] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.producto-card[b-acz3e8dt5w] {
    width: 250px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .producto-card img[b-acz3e8dt5w] {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

.producto-overlay[b-acz3e8dt5w] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    transition: opacity 0.5s;
    opacity: 0;
}

.producto-card:hover .producto-overlay[b-acz3e8dt5w] {
    opacity: 1;
}

.producto-info[b-acz3e8dt5w] {
    text-align: center;
}

button[b-acz3e8dt5w] {
    margin: 5px;
    padding: 5px 10px;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

    button:disabled[b-acz3e8dt5w] {
        background-color: #ccc;
    }

.alert[b-acz3e8dt5w] {
    padding: 20px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
}

.alert-warning[b-acz3e8dt5w] {
    background-color: #ff9800;
}
.confirmation-animation[b-acz3e8dt5w] {
    position: absolute;
    top: 0;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 5px;
    border-radius: 5px;
    animation: fadeOut-b-acz3e8dt5w 2s forwards;
}

@keyframes fadeOut-b-acz3e8dt5w {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}
/* /Pages/PedidoConfirmado.razor.rz.scp.css */
body[b-6s3gj8osh5] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

h3[b-6s3gj8osh5] {
    color: #333;
    text-align: center;
    margin-top: 50px;
}

.confirmation-message[b-6s3gj8osh5] {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
    font-size: 16px;
    color: #4CAF50;
}

.button-container[b-6s3gj8osh5] {
    text-align: center;
    margin-top: 20px;
}

button[b-6s3gj8osh5] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

    button:hover[b-6s3gj8osh5] {
        background-color: #45a049;
    }
/* /Pages/Registrar.razor.rz.scp.css */
.register-title[b-jg7ims50i4] {
    text-align: center;
    margin-bottom: 20px;
    color: #3e66ae;
    font-size: 2rem;
}

.register-form[b-jg7ims50i4] {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.register-button[b-jg7ims50i4] {
    width: 100%;
    margin-top: 20px;
}

    .register-button:hover[b-jg7ims50i4] {
        background-color: #0056b3;
    }

.form-label[b-jg7ims50i4] {
    color: #3e66ae;
    font-weight: bold;
}

.form-control[b-jg7ims50i4] {
    border-radius: 5px;
}

.alert[b-jg7ims50i4] {
    margin-top: 20px;
}
/* /Pages/ReservaExterior.razor.rz.scp.css */

@keyframes typing-b-oknczsp5g3 {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Hace el cursor transparente al final de la animación */
    }
}

.login-title[b-oknczsp5g3] {
    text-align: center;
    display: inline-block;
    font-size: 2rem; /* Ajusta según sea necesario para los títulos de categoría */
    margin: 40px 0 20px;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    border-right: .15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-oknczsp5g3 3.5s steps(30, end) forwards;
}


.login-form[b-oknczsp5g3] {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-primary.login-button[b-oknczsp5g3] {
    width: 100%;
    margin-top: 20px;
}

    .btn-primary.login-button:hover[b-oknczsp5g3] {
        background-color: #0056b3;
    }

.form-label[b-oknczsp5g3] {
    color: #3e66ae;
    font-weight: bold;
}

.form-control[b-oknczsp5g3] {
    border-radius: 5px;
}


.alert[b-oknczsp5g3] {
    margin-top: 20px;
}

.alert-info[b-oknczsp5g3] {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.reservation-success-message[b-oknczsp5g3] {
    background-color: #d9edf7;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.btn-info[b-oknczsp5g3] {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

    .btn-info:hover[b-oknczsp5g3] {
        background-color: #138496;
        border-color: #117a8b;
    }
/* /Pages/ReservaInterior.razor.rz.scp.css */

@keyframes typing-b-3zpmyuc5pq {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Hace el cursor transparente al final de la animación */
    }
}
.login-title[b-3zpmyuc5pq] {
    text-align: center;
    display: inline-block;
    font-size: 2rem; /* Ajusta según sea necesario para los títulos de categoría */
    margin: 40px 0 20px;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    border-right: .15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-3zpmyuc5pq 3.5s steps(30, end) forwards;
}

.login-form[b-3zpmyuc5pq] {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-primary.login-button[b-3zpmyuc5pq] {
    width: 100%;
    margin-top: 20px;
}

    .btn-primary.login-button:hover[b-3zpmyuc5pq] {
        background-color: #0056b3;
    }

.form-label[b-3zpmyuc5pq] {
    color: #3e66ae;
    font-weight: bold;
}

.form-control[b-3zpmyuc5pq] {
    border-radius: 5px;
}


.alert[b-3zpmyuc5pq] {
    margin-top: 20px;
}

.alert-info[b-3zpmyuc5pq] {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.reservation-success-message[b-3zpmyuc5pq] {
    background-color: #d9edf7;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.btn-info[b-3zpmyuc5pq] {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

    .btn-info:hover[b-3zpmyuc5pq] {
        background-color: #138496;
        border-color: #117a8b;
    }
/* /Pages/Reservas.razor.rz.scp.css */
body[b-p0lmy6v90d] {
    margin: 0;
    padding: 0;
}

.welcome-title[b-p0lmy6v90d] {
    position: relative;
    text-align: center;
    font-size: 5.5rem;
    margin: 20px 0;
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    z-index: 3;
    border-right: .15em solid #3e66ae;
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-p0lmy6v90d 3.5s steps(30, end) forwards;
}

@keyframes typing-b-p0lmy6v90d {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent;
    }
}

.description[b-p0lmy6v90d] {
    font-size: 3rem;
    color: #3e66ae;
    margin-bottom: 10px;
    font-family: 'Times New Roman', serif;
}

.image-section[b-p0lmy6v90d] {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    flex-wrap: wrap;
}

.image-container[b-p0lmy6v90d] {
    text-align: center;
    flex-basis: 30%;
    margin: 20px;
}

    .image-container img[b-p0lmy6v90d] {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.image-as-button:hover[b-p0lmy6v90d] {
    opacity: 0.8;
    cursor: pointer;
}

/* Media queries para dispositivos móviles */
@media (max-width: 1582px) {
    .welcome-title[b-p0lmy6v90d] {
        font-size: 1.7rem;
        margin: 10px 0;
        padding: 0 20px;
    }

    .description[b-p0lmy6v90d] {
        font-size: 1.5rem;
    }

    .image-section[b-p0lmy6v90d] {
        flex-direction: column;
        align-items: center;
    }

    .image-container[b-p0lmy6v90d] {
        flex-basis: 100%;
        max-width: 300px;
        margin: 10px;
    }
}
/* /Pages/Usuario.razor.rz.scp.css */

@keyframes typing-b-18oef68yxx {
    from {
        width: 0;
    }

    to {
        width: 100%;
        border-color: transparent; /* Cursor transparente al final de la animación */
    }
}

.page-title[b-18oef68yxx] {
    position: relative;
    text-align: center;
    font-size: 3rem; /* Tamaño grande para escritorio */
   
    color: #3e66ae;
    font-family: 'Times New Roman', serif;
    z-index: 3;
    border-right: .15em solid #3e66ae; /* Visible durante la animación */
    white-space: nowrap;
    overflow: hidden;
    animation: typing-b-18oef68yxx 3.5s steps(30, end) forwards;
}

.user-details[b-18oef68yxx], .reservations[b-18oef68yxx], .orders[b-18oef68yxx] {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

h2[b-18oef68yxx] {
    color: #34495e;
    font-family: 'Times New Roman', serif;
}

ul[b-18oef68yxx] {
    list-style-type: none;
    padding: 0;
}

li[b-18oef68yxx] {
    padding: 10px;
    border-bottom: 1px solid #ecf0f1;
}

    li:last-child[b-18oef68yxx] {
        border-bottom: none;
    }

p[b-18oef68yxx] {
    color: #7f8c8d;
}
.link-button[b-18oef68yxx] {
    background: none;
    color: #007bff;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
    display: inline;
    margin: 0;
    text-decoration: underline;
}

    .link-button:hover[b-18oef68yxx],
    .link-button:focus[b-18oef68yxx] {
        text-decoration: none;
        color: #0056b3;
    }







.card-container[b-18oef68yxx] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: start;
}

.card[b-18oef68yxx] {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: calc(33.333% - 10px);
    margin-bottom: 20px;
    overflow: hidden;
}

    .card:hover[b-18oef68yxx] {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.card-content[b-18oef68yxx] {
    padding: 15px;
    color: #333;
}

.card p[b-18oef68yxx] {
    margin: 5px 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .card[b-18oef68yxx] {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .card[b-18oef68yxx] {
        width: 100%;
    }
}
