@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* /Layout/Header.razor.rz.scp.css */
.navbar[b-t1suvk5fdl] {
    padding: 1rem 2rem;
    background-color: #f4f6f8;
    font-weight: 500;
    height: 64px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-left[b-t1suvk5fdl] {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.hamburger[b-t1suvk5fdl] {
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}



.logo[b-t1suvk5fdl] {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: #1976d2;
    text-decoration: none;
    gap: 0.5rem;
    font-weight: bold;
}

.logo-img[b-t1suvk5fdl] {
    height: 40px;
    width: 40px;
}


.menu[b-t1suvk5fdl] {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    margin-left: auto; /* 👈 esto alinea a la derecha */
    align-items: center;
}

    .menu li a[b-t1suvk5fdl],
    .menu li button[b-t1suvk5fdl] {
        color: #333;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        text-decoration: none !important;
        transition: color 0.2s;
    }

        .menu li button:hover[b-t1suvk5fdl],
        .menu li a:hover[b-t1suvk5fdl] {
            text-decoration: underline;
            color: #1976d2;
        }

.session-control[b-t1suvk5fdl] {
    display: flex;
    align-items: center;
}

.logout-btn[b-t1suvk5fdl] {
    color: #333;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding-left: 1rem;
}

    .logout-btn:hover[b-t1suvk5fdl] {
        text-decoration: underline;
        color: #d32f2f; /* Rojo sobrio */
    }


@media (max-width: 768px) {
    .hamburger[b-t1suvk5fdl] {
        display: block;
    }

    .menu[b-t1suvk5fdl] {
        display: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Contenedor principal ocupa toda la pantalla */
.main-layout[b-islfjzc3l6] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.layout-body[b-islfjzc3l6] {
    display: flex;
    flex: 1 1 auto;
    min-height: 0; /* ⬅️ NECESARIO para que el hijo con scroll funcione */
    overflow: hidden;
}

/*.sidebar {
    width: 220px;
    background-color: #f4f4f4;
    padding: 1rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}*/

.main-content[b-islfjzc3l6] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    height: calc(100vh - 64px); /* para que no pase del viewport */
}

.page[b-islfjzc3l6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-islfjzc3l6] {
    flex: 1;
}

.whatsapp-float[b-islfjzc3l6] {
    position: fixed;
    bottom: 20px;
    /*right: 20px;*/
    background-color: #25d366;
    color: white;
    border-radius: 25px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

    .whatsapp-float:hover[b-islfjzc3l6] {
        background-color: #1ebe5d;
    }


.top-row[b-islfjzc3l6] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-islfjzc3l6]  a, .top-row[b-islfjzc3l6]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-islfjzc3l6]  a:hover, .top-row[b-islfjzc3l6]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-islfjzc3l6]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-islfjzc3l6] {
        justify-content: space-between;
    }

    .top-row[b-islfjzc3l6]  a, .top-row[b-islfjzc3l6]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-islfjzc3l6] {
        flex-direction: row;
    }

    .sidebar[b-islfjzc3l6] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-islfjzc3l6] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-islfjzc3l6]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-islfjzc3l6], article[b-islfjzc3l6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-whzwonz15t] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-whzwonz15t] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-whzwonz15t] {
    font-size: 1.1rem;
}

.bi[b-whzwonz15t] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-whzwonz15t] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-whzwonz15t] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-whzwonz15t] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-whzwonz15t] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-whzwonz15t] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-whzwonz15t] {
        padding-bottom: 1rem;
    }

    .nav-item[b-whzwonz15t]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-whzwonz15t]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-whzwonz15t]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-whzwonz15t] {
        display: none;
    }

    .collapse[b-whzwonz15t] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-whzwonz15t] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/Sidebar.razor.rz.scp.css */
.sidebar[b-ulalr687kj] {
    width: 250px;
    background-color: #f4f6f8;
    padding: 1rem;
    /*color: #e0e0e0;*/ /* Gris claro para el texto */
    flex-shrink: 0;
    height: calc(100vh - 64px); /* Resta el header */
    overflow: hidden;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

    .sidebar .nav-link[b-ulalr687kj] {
        color: #e0e0e0;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        transition: background 0.2s, color 0.2s;
        font-weight: 500;
    }

        .sidebar .nav-link:hover[b-ulalr687kj] {
            background-color: #2c2c3f; /* Hover más claro */
            color: #90caf9; /* Azul claro como acento */
        }

        .sidebar .nav-link.active[b-ulalr687kj] {
            background-color: #3949ab; /* Acento azul profesional */
            color: white;
            font-weight: bold;
        }

    .sidebar.hide[b-ulalr687kj] {
        transform: translateX(-100%);
        position: absolute;
        z-index: 1000;
    }

    .sidebar.show[b-ulalr687kj] {
        transform: translateX(0);
        position: absolute;
        z-index: 1000;
    }

@media (min-width: 768px) {
    .sidebar[b-ulalr687kj] {
        transform: translateX(0) !important;
        position: relative !important;
        z-index: auto !important;
    }
}
/* /Pages/ApiKey.razor.rz.scp.css */
section[b-0jcx3zizjy] {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

code[b-0jcx3zizjy] {
    font-family: Consolas, monospace;
    font-size: 0.95rem;
}

.code-block[b-0jcx3zizjy] {
    max-height: 420px;
    overflow: auto;
    background: #0f172a;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: .5rem;
}

pre[b-0jcx3zizjy] {
    white-space: pre-wrap;
}
/* /Pages/Dashboard.razor.rz.scp.css */
.dashboard-summary[b-qmeo8afydn] {
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-width: 400px;
}

.progress-bar-container[b-qmeo8afydn] {
    margin-top: 1rem;
    background-color: #ddd;
    border-radius: 20px;
    overflow: hidden;
    height: 20px;
}

.progress-bar-fill[b-qmeo8afydn] {
    background-color: #1976d2;
    height: 100%;
    transition: width 0.5s;
}

.contact-section[b-qmeo8afydn] {
    background: #f5f7fb;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}
/* /Pages/Home.razor.rz.scp.css */
/*.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(to right, #ff6a00, #ff9900);
    color: white;
    min-height: 80vh;
}

.hero-content {
    max-width: 600px;
}

.buttons .btn {
    margin-right: 1rem;
}
*/

.landing-container[b-rpz15ivcmi] {
    font-family: 'Segoe UI', sans-serif;
    color: #2c3e50;
}

.hero[b-rpz15ivcmi] {
    background: linear-gradient(135deg, #1a237e, #3f51b5);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

    .hero h1[b-rpz15ivcmi] {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero p[b-rpz15ivcmi] {
        font-size: 1.25rem;
    }

.cta-button[b-rpz15ivcmi] {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ffca28;
    color: #1a237e;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .cta-button:hover[b-rpz15ivcmi] {
        background-color: #fbc02d;
    }

.features[b-rpz15ivcmi] {
    padding: 3rem 2rem;
    text-align: center;
}

.features-grid[b-rpz15ivcmi] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature-item[b-rpz15ivcmi] {
    background-color: #f4f6f8;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

    .feature-item h3[b-rpz15ivcmi] {
        color: #1a237e;
        margin-bottom: 0.5rem;
    }

.cta-section[b-rpz15ivcmi] {
    background-color: #e3f2fd;
    padding: 3rem 2rem;
    text-align: center;
}

.landing-footer[b-rpz15ivcmi] {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #888;
}
/* /Pages/Landing.razor.rz.scp.css */
.landing[b-l2drgxfdqk] {
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.hero[b-l2drgxfdqk] {
    text-align: center;
    background: #1a237e;
    color: white;
    padding: 3rem 1rem;
}

    .hero h1[b-l2drgxfdqk] {
        font-size: 2.5rem;
    }

    .hero .btn-docs[b-l2drgxfdqk] {
        background-color: #90caf9;
        padding: 0.7rem 1.5rem;
        border: none;
        color: #1a237e;
        font-weight: bold;
        border-radius: 5px;
        text-decoration: none;
        margin-top: 1rem;
        display: inline-block;
    }

.features[b-l2drgxfdqk] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2rem;
}

.feature[b-l2drgxfdqk] {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 30%;
    margin: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.faq[b-l2drgxfdqk] {
    margin-top: 3rem;
}

    .faq details[b-l2drgxfdqk] {
        margin-bottom: 1rem;
        background: #eef2f7;
        padding: 1rem;
        border-radius: 5px;
    }

.faq-accordion[b-l2drgxfdqk] {
    margin-top: 1rem;
    display: grid;
    gap: .75rem;
}

.faq-item[b-l2drgxfdqk] {
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(17,24,39,.04);
}

    .faq-item[open][b-l2drgxfdqk] {
        border-color: #cbd5e1;
    }

    .faq-item > summary[b-l2drgxfdqk] {
        list-style: none;
        cursor: pointer;
        padding: .9rem 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: .5rem;
        position: relative;
    }

        .faq-item > summary[b-l2drgxfdqk]::-webkit-details-marker {
            display: none;
        }

        /* caret */
        .faq-item > summary[b-l2drgxfdqk]::after {
            content: "▾";
            margin-left: auto;
            transition: transform .2s ease;
            opacity: .7;
            font-size: .9rem;
        }

    .faq-item[open] > summary[b-l2drgxfdqk]::after {
        transform: rotate(-180deg);
    }

    /* focus */
    .faq-item > summary:focus[b-l2drgxfdqk] {
        outline: none;
    }

    .faq-item > summary:focus-visible[b-l2drgxfdqk] {
        outline: 2px solid #60a5fa;
        outline-offset: 2px;
        border-radius: .5rem;
    }

/* body */
.faq-body[b-l2drgxfdqk] {
    padding: .75rem 1rem 1rem;
    color: #374151;
}
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-j2rza6yo9n] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f8f9fa;
}

.login-card[b-j2rza6yo9n] {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-title[b-j2rza6yo9n] {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.btn-block[b-j2rza6yo9n] {
    width: 100%;
    margin-top: 1rem;
}

.login-subtitle[b-j2rza6yo9n] {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}
/* /Pages/Register.razor.rz.scp.css */
.register-container[b-r24zr1jq8t] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f8f9fa;
}

.register-card[b-r24zr1jq8t] {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

    .register-card h3[b-r24zr1jq8t] {
        margin-bottom: 1.5rem;
        text-align: center;
        color: #333;
    }

.btn-block[b-r24zr1jq8t] {
    width: 100%;
    margin-top: 1rem;
}
