/* /Components/AgentsPanel.razor.rz.scp.css */
/* Estilos específicos para el componente AgentsPanel */

/* Clase base fluentheader */
.fluentheader[b-4dzppvj48f] {
    /* Hereda los estilos base del tema fluent */
}

/* Panel principal de agentes */
.divagents[b-4dzppvj48f] {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-left: 300px;
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: slideIn-b-4dzppvj48f 0.5s ease;
    position: relative;
}

@keyframes slideIn-b-4dzppvj48f {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botón de cerrar */
.close-btn[b-4dzppvj48f] {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    width: 32px !important;
    height: 32px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.close-btn:hover[b-4dzppvj48f] {
    background: rgba(255, 107, 107, 0.2) !important;
    border-color: rgba(255, 107, 107, 0.4) !important;
    color: #ff6b6b !important;
    transform: scale(1.05) !important;
}

.close-btn:active[b-4dzppvj48f] {
    transform: scale(0.95) !important;
}

/* Header de agentes */
.divHeaderAgents[b-4dzppvj48f] {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botón de nuevo agente */
.btnnewagent[b-4dzppvj48f] {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0.6rem 1rem !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    margin: 0 0.5rem !important;
}

.btnnewagent:hover[b-4dzppvj48f] {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.btnnewagent:active[b-4dzppvj48f] {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Datos de agentes */
.DivAgentsData[b-4dzppvj48f] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Formulario de agente */
.divformNewAgent[b-4dzppvj48f] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-4dzppvj48f 0.3s ease;
}

.divagentformdata[b-4dzppvj48f] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp-b-4dzppvj48f 0.3s ease;
}

@keyframes fadeIn-b-4dzppvj48f {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-4dzppvj48f {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Syncfusion Grid styles - Mejoras específicas para el componente AgentsPanel */
[b-4dzppvj48f] .e-grid {
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

[b-4dzppvj48f] .e-grid .e-gridheader {
    background: rgba(255, 255, 255, 0.7) !important;
}

[b-4dzppvj48f] .e-grid .e-row {
    background: rgba(255, 255, 255, 0.5) !important;
}

[b-4dzppvj48f] .e-grid .e-row:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}

[b-4dzppvj48f] .e-grid .e-content {
    background: rgba(255, 255, 255, 0.3) !important;
}

[b-4dzppvj48f] .e-toolbar {
    background: rgba(255, 255, 255, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .divagents[b-4dzppvj48f] {
        margin-left: 220px;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .divagents[b-4dzppvj48f] {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-wfci1sjfyo] {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

main[b-wfci1sjfyo] {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-owlgijk10j] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-owlgijk10j] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-owlgijk10j] {
    font-size: 1.1rem;
}

.bi[b-owlgijk10j] {
    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-owlgijk10j] {
    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-owlgijk10j] {
    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-owlgijk10j] {
    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-owlgijk10j] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-owlgijk10j] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-owlgijk10j] {
        padding-bottom: 1rem;
    }

    .nav-item[b-owlgijk10j]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-owlgijk10j]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-owlgijk10j]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-owlgijk10j] {
        display: none;
    }

    .collapse[b-owlgijk10j] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-owlgijk10j] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.HomeMainDiv[b-f7x76gs9wi] {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: url("img/bg3.jpg") no-repeat center center fixed;
    background-size: cover;
}

.centered-content[b-f7x76gs9wi] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 120px;
    transform: translate(-50%, -50%);
}

.show-login-btn[b-f7x76gs9wi] {
    background-color: #0d47a1;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    .show-login-btn:hover[b-f7x76gs9wi] {
        background-color: #1565c0;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .show-login-btn:active[b-f7x76gs9wi] {
        transform: translateY(1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

.LockDiv[b-f7x76gs9wi] {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3;
}

#formContent[b-f7x76gs9wi] {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    padding: 5px;
    width: 98%;
    max-width: 450px;
    position: relative;
    text-align: center;
}

#formFooter[b-f7x76gs9wi] {
    background-color: transparent;
    padding: 25px;
    text-align: center;
}

input[type=text][b-f7x76gs9wi], input[type=password][b-f7x76gs9wi] {
    background-color: #fff;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#txtpassword[b-f7x76gs9wi] {
    background-color: #fff;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #fff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus[b-f7x76gs9wi], input[type=password]:focus[b-f7x76gs9wi] {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder[b-f7x76gs9wi], input[type=password]:placeholder[b-f7x76gs9wi] {
    color: #cccccc;
}

#txtpassword:placeholder[b-f7x76gs9wi] {
    color: #cccccc;
}

#txtpassword:focus[b-f7x76gs9wi] {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

.close-btn[b-f7x76gs9wi] {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

    .close-btn:hover[b-f7x76gs9wi] {
        color: #e53935;
    }

.Hlogo[b-f7x76gs9wi] {
    height: 120px;
    width: 250px;
}

/* --- Responsive styles for Home page --- */
@media (max-width: 900px) {
    .home-main-container[b-f7x76gs9wi] {
        flex-direction: column;
        padding: 0 5px;
    }
    .home-header[b-f7x76gs9wi] {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    .home-logo[b-f7x76gs9wi] {
        width: 90px;
        height: auto;
        margin-bottom: 10px;
    }
    .home-content[b-f7x76gs9wi] {
        width: 100% !important;
        min-width: unset;
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
    .home-header[b-f7x76gs9wi] {
        font-size: 0.95em;
    }
    .home-content[b-f7x76gs9wi] {
        min-width: 0;
        width: 100vw !important;
        padding: 0;
    }
    .home-logo[b-f7x76gs9wi] {
        min-width: 60px;
        width: 60px;
    }
}

/* Ensure main container uses flex for layout */
.home-main-container[b-f7x76gs9wi] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}

/* === Modern Home Page Styles === */
.home-container[b-f7x76gs9wi] {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Background Effects */
.background-overlay[b-f7x76gs9wi] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.background-shapes[b-f7x76gs9wi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape[b-f7x76gs9wi] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-b-f7x76gs9wi 6s ease-in-out infinite;
}

.shape-1[b-f7x76gs9wi] {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2[b-f7x76gs9wi] {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3[b-f7x76gs9wi] {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-b-f7x76gs9wi {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Header Styles */
.home-header[b-f7x76gs9wi] {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: center;
}

.logo-container[b-f7x76gs9wi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.home-logo[b-f7x76gs9wi] {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.home-logo:hover[b-f7x76gs9wi] {
    transform: scale(1.05);
}

.platform-title[b-f7x76gs9wi] {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* Main Content */
.home-main[b-f7x76gs9wi] {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 4rem;
}

.welcome-section[b-f7x76gs9wi] {
    text-align: center;
    max-width: 600px;
}

.welcome-title[b-f7x76gs9wi] {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-subtitle[b-f7x76gs9wi] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button[b-f7x76gs9wi] {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.cta-button:hover[b-f7x76gs9wi] {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.cta-button:active[b-f7x76gs9wi] {
    transform: translateY(0);
}

.button-icon[b-f7x76gs9wi] {
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid[b-f7x76gs9wi] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    width: 100%;
}

.feature-card[b-f7x76gs9wi] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover[b-f7x76gs9wi] {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon[b-f7x76gs9wi] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3[b-f7x76gs9wi] {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p[b-f7x76gs9wi] {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Modal Styles */
.modal-overlay[b-f7x76gs9wi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-f7x76gs9wi 0.3s ease;
}

.login-modal[b-f7x76gs9wi] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 450px;
    overflow: hidden;
    animation: slideUp-b-f7x76gs9wi 0.3s ease;
}

.mfa-modal[b-f7x76gs9wi] {
    max-width: 400px;
}

.modal-header[b-f7x76gs9wi] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title[b-f7x76gs9wi] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-button[b-f7x76gs9wi] {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.close-button:hover[b-f7x76gs9wi] {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body[b-f7x76gs9wi] {
    padding: 2rem;
}

.form-group[b-f7x76gs9wi] {
    margin-bottom: 1.5rem;
}

.form-label[b-f7x76gs9wi] {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input[b-f7x76gs9wi] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-input:focus[b-f7x76gs9wi] {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input[b-f7x76gs9wi]::placeholder {
    color: #6c757d;
}

.login-button[b-f7x76gs9wi] {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.login-button:hover[b-f7x76gs9wi] {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.login-button:active[b-f7x76gs9wi] {
    transform: translateY(0);
}

.button-text[b-f7x76gs9wi] {
    display: block;
}

/* MFA Specific Styles */
.mfa-description[b-f7x76gs9wi] {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.otp-container[b-f7x76gs9wi] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay[b-f7x76gs9wi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-spinner[b-f7x76gs9wi] {
    text-align: center;
    color: white;
}

.spinner-circle[b-f7x76gs9wi] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin-b-f7x76gs9wi 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text[b-f7x76gs9wi] {
    color: white;
    font-size: 1rem;
    margin: 0;
}

@keyframes spin-b-f7x76gs9wi {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dialog Styles */
.dialog-header[b-f7x76gs9wi] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.dialog-icon[b-f7x76gs9wi] {
    font-size: 1.2rem;
}

.dialog-content[b-f7x76gs9wi] {
    padding: 1rem 0;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn-b-f7x76gs9wi {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-f7x76gs9wi {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .platform-title[b-f7x76gs9wi] {
        font-size: 2rem;
    }
    
    .welcome-title[b-f7x76gs9wi] {
        font-size: 2.2rem;
    }
    
    .welcome-subtitle[b-f7x76gs9wi] {
        font-size: 1.1rem;
    }
    
    .features-grid[b-f7x76gs9wi] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .home-main[b-f7x76gs9wi] {
        padding: 1rem;
        gap: 3rem;
    }
    
    .modal-body[b-f7x76gs9wi] {
        padding: 1.5rem;
    }
    
    .shape[b-f7x76gs9wi] {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-header[b-f7x76gs9wi] {
        padding: 1rem;
    }
    
    .platform-title[b-f7x76gs9wi] {
        font-size: 1.8rem;
    }
    
    .welcome-title[b-f7x76gs9wi] {
        font-size: 1.8rem;
    }
    
    .login-modal[b-f7x76gs9wi] {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

/* Legacy compatibility */
.HomeMainDiv[b-f7x76gs9wi], .LockDiv[b-f7x76gs9wi], .fluentcardSSO[b-f7x76gs9wi] {
    display: none !important;
}

/* Override any existing conflicting styles */
.home-main-container[b-f7x76gs9wi] {
    display: none !important;
}
/* /Pages/Platform.razor.rz.scp.css */
/* === ESTILOS MODERNOS PARA PLATFORM === */

/* Contenedor principal moderno */
.platformmaindiv[b-sqvwpzaetd] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

/* Header moderno */
.dkpHeader[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.platformlogo[b-sqvwpzaetd] {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

    .platformlogo:hover[b-sqvwpzaetd] {
        transform: scale(1.1);
    }

.alias-display[b-sqvwpzaetd] {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Avatar container and menu */
.avatar-container[b-sqvwpzaetd] {
    position: relative;
    z-index: 999999 !important;
}

.avatar[b-sqvwpzaetd] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .avatar:hover[b-sqvwpzaetd] {
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }

/* User Menu Styles - MEJORADO PARA APARECER SIEMPRE ARRIBA */
.user-menu[b-sqvwpzaetd] {
    position: fixed !important;
    top: 70px !important;
    right: 2rem !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 99999 !important;
    animation: slideDown 0.3s ease;
}

@@keyframes slideDown {
    from[b-sqvwpzaetd] {
        opacity: 0;
        transform: translateY(-10px);
    }

    to[b-sqvwpzaetd] {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu-header[b-sqvwpzaetd] {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-menu-avatar[b-sqvwpzaetd] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(103, 126, 234, 0.3);
}

.user-menu-info[b-sqvwpzaetd] {
    display: flex;
    flex-direction: column;
}

.user-menu-name[b-sqvwpzaetd] {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.user-menu-role[b-sqvwpzaetd] {
    font-size: 0.8rem;
    color: #666;
}

.user-menu-divider[b-sqvwpzaetd] {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
}

.user-menu-items[b-sqvwpzaetd] {
    padding: 0.5rem;
}

.user-menu-item[b-sqvwpzaetd] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

    .user-menu-item:hover[b-sqvwpzaetd] {
        background: rgba(103, 126, 234, 0.1);
    }

    .user-menu-item.logout:hover[b-sqvwpzaetd] {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }

.user-menu-icon[b-sqvwpzaetd] {
    font-size: 1.1rem;
}

/* Sidebar moderno */
.platformsidebar[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1rem;
    width: 280px;
    position: fixed;
    left: 0;
    top: 90px;
    bottom: 0;
    z-index: 50;
}

/* Botones del sidebar modernos */
.agents-btn[b-sqvwpzaetd], .chat-btn[b-sqvwpzaetd], .lovable-btn[b-sqvwpzaetd], .replit-btn[b-sqvwpzaetd], .wf-btn[b-sqvwpzaetd] {
    width: 100%;
    padding: 1rem 1.25rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .agents-btn:hover[b-sqvwpzaetd], .chat-btn:hover[b-sqvwpzaetd], .lovable-btn:hover[b-sqvwpzaetd], .replit-btn:hover[b-sqvwpzaetd], .wf-btn:hover[b-sqvwpzaetd] {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Iconos para los botones */
    .agents-btn[b-sqvwpzaetd]::before {
        content: "🤖 ";
    }

    .chat-btn[b-sqvwpzaetd]::before {
        content: "💬 ";
    }

    .lovable-btn[b-sqvwpzaetd]::before {
        content: "❤️ ";
    }

    .replit-btn[b-sqvwpzaetd]::before {
        content: "⚡ ";
    }

    .wf-btn[b-sqvwpzaetd]::before {
        content: "⚙️ ";
    }

/* Paneles modernos */
.divagents[b-sqvwpzaetd], .divchat[b-sqvwpzaetd], .divalovable[b-sqvwpzaetd], .divworkflow[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-left: 300px;
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease;
    position: relative;
}

.DivContornoChat[b-sqvwpzaetd] {
    position: relative;
    top: 10px;
    bottom: 10px;
    margin-top: 1px;
    margin-bottom: 20px;
    margin-right: 10px;
    margin-left: 10px;
    /*background: rgba(255, 255, 255, 0.1) !important;*/
    background: white !important;
    border-radius: 10px;
}

@@keyframes slideIn {
    from[b-sqvwpzaetd] {
        opacity: 0;
        transform: translateY(30px);
    }

    to[b-sqvwpzaetd] {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botones de cerrar modernos - MEJORADOS */
.close-btn[b-sqvwpzaetd] {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    width: 32px !important;
    height: 32px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

    .close-btn:hover[b-sqvwpzaetd] {
        background: rgba(255, 107, 107, 0.2) !important;
        border-color: rgba(255, 107, 107, 0.4) !important;
        color: #ff6b6b !important;
        transform: scale(1.05) !important;
    }

    .close-btn:active[b-sqvwpzaetd] {
        transform: scale(0.95) !important;
    }

/* Header de agentes - SIN FONDO VERDE */
.divHeaderAgents[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botón de nuevo agente - REDUCIDO 60% Y SIN FONDO VERDE */
.btnnewagent[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0.6rem 1rem !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

    .btnnewagent:hover[b-sqvwpzaetd] {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }

    .btnnewagent:active[b-sqvwpzaetd] {
        transform: translateY(0) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    }

/* Datos de agentes */
.DivAgentsData[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Formulario de agente */
.divformNewAgent[b-sqvwpzaetd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.divagentformdata[b-sqvwpzaetd] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

/* Selector de agente */
.DivSelAgent[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 300px 1rem 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-label[b-sqvwpzaetd] {
    color: white;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Chat */
.DivChat[b-sqvwpzaetd] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Lovable frame */
.LovFrame[b-sqvwpzaetd] {
    width: 100%;
    height: calc(100vh - 200px);
    border: none;
    border-radius: 15px;
}

/* Loading - MEJORADO CON MENSAJE DINÁMICO */
.LockDiv[b-sqvwpzaetd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .LockDiv[b-sqvwpzaetd]::after {
        content: "Cargando...";
        color: white;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 2rem;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        animation: pulse 1.5s ease-in-out infinite;
    }

@@keyframes pulse {
    0%[b-sqvwpzaetd], 100%[b-sqvwpzaetd] {
        opacity: 0.8;
    }

    50%[b-sqvwpzaetd] {
        opacity: 1;
    }
}

@@keyframes fadeIn {
    from[b-sqvwpzaetd] {
        opacity: 0;
    }

    to[b-sqvwpzaetd] {
        opacity: 1;
    }
}

@@keyframes slideUp {
    from[b-sqvwpzaetd] {
        opacity: 0;
        transform: translateY(30px);
    }

    to[b-sqvwpzaetd] {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@@media (max-width: 768px) {
    .platformsidebar[b-sqvwpzaetd] {
        width: 200px;
    }

    .divagents[b-sqvwpzaetd], .divchat[b-sqvwpzaetd], .divalovable[b-sqvwpzaetd] {
        margin-left: 220px;
        margin-right: 1rem;
    }

    .DivSelAgent[b-sqvwpzaetd] {
        margin: 1rem 220px 1rem 240px;
    }

    .user-menu[b-sqvwpzaetd] {
        right: 1rem !important;
    }
}

@@media (max-width: 480px) {
    .platformsidebar[b-sqvwpzaetd] {
        display: none;
    }

    .divagents[b-sqvwpzaetd], .divchat[b-sqvwpzaetd], .divalovable[b-sqvwpzaetd] {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .DivSelAgent[b-sqvwpzaetd] {
        margin: 1rem;
    }

    .user-menu[b-sqvwpzaetd] {
        right: 0.5rem !important;
    }
}

.workflowImg[b-sqvwpzaetd] {
    width: 85%;
    height: 85%;
    max-width: 100%;
    border-radius: 15px;
    border-color: transparent;
}

.DivWF[b-sqvwpzaetd] {
   /* background: rgba(0, 0, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;*/
    margin-left: 2rem;
    margin-top: 0rem;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
    padding: 2rem;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);*/
    animation: slideIn 0.5s ease;
    position: relative;
    background-color: transparent;
}
/* /Pages/WebSysContainer.razor.rz.scp.css */
.webframe[b-3tgf3a0ewo] {
    width: 100%;
    height: 100%;
    /*overflow-y: auto;*/
    overflow-y: hidden;
    overflow-y: hidden;
    background-color: transparent;
}

[b-3tgf3a0ewo]::-webkit-scrollbar {
    width: 5px;
}

[b-3tgf3a0ewo]::-webkit-scrollbar-track {
    background: transparent;
}

[b-3tgf3a0ewo]::-webkit-scrollbar-thumb {
    background-color: rgba(155, 155, 155, 0.5);
    border-radius: 20px;
    border: transparent;
    width: 5px;
}
