/* _content/ReferenceAI/Components/Audio/AudioPlayer.razor.rz.scp.css */
/* Contenedor principal - Barra flotante inferior */
.audio-player-container[b-5vy0kwpvii] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 -1rem 2rem rgba(0, 0, 0, 0.4);
    padding: 1.5rem 1rem;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid rgba(200, 200, 200, 1);
}

.audio-player-container.hidden[b-5vy0kwpvii] {
    transform: translateY(100%);
    pointer-events: none;
}

.audio-player-container.visible[b-5vy0kwpvii] {
    transform: translateY(0);
}

/* Contenido centrado con max-width */
.audio-player-content[b-5vy0kwpvii] {
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

/* Botón de cerrar */
.close-btn[b-5vy0kwpvii] {
    position: absolute;
    top: -0.5rem;
    right: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: bold;
}

.close-btn:hover[b-5vy0kwpvii] {
    background: rgba(255, 100, 100, 0.3);
    border-color: rgba(255, 100, 100, 0.5);
    color: white;
    transform: scale(1.1);
}

/* Título del artículo */
.article-title[b-5vy0kwpvii] {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
    text-align: center;
    line-height: 1.4;
    padding-right: 2rem; /* Espacio para botón cerrar */
}

/* Controles principales */
.main-controls[b-5vy0kwpvii] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
    
}

.control-btn[b-5vy0kwpvii] {
    padding: 0rem 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
}

.control-btn:hover:not(:disabled)[b-5vy0kwpvii] {

}

.control-btn:disabled[b-5vy0kwpvii] {

}

.control-btn.play-pause[b-5vy0kwpvii] {

}

.control-btn.play-pause:hover:not(:disabled)[b-5vy0kwpvii] {

}

/* Barra de progreso */
.progress-container[b-5vy0kwpvii] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-bar[b-5vy0kwpvii] {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.progress-bar[b-5vy0kwpvii]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgb(39, 51, 105);
    cursor: pointer;
    transition: transform 0.2s;
}

.progress-bar[b-5vy0kwpvii]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.progress-bar[b-5vy0kwpvii]::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgb(29, 95, 182);
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.progress-bar[b-5vy0kwpvii]::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.time-display[b-5vy0kwpvii] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Opciones de profundidad */
.depth-options[b-5vy0kwpvii] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0.7rem;
    border:solid 2px rgba(255, 255, 255, 1);
    overflow: clip;
    gap: 1px;
    background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
    .depth-options[b-5vy0kwpvii] {
        grid-template-columns: repeat(4, 1fr);
    }
}

.depth-btn[b-5vy0kwpvii] {
    background: rgba(35, 35, 35, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0rem;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
}

.depth-btn:hover[b-5vy0kwpvii] {
}

.depth-btn.active[b-5vy0kwpvii] {
    background: rgba(85, 85, 85, 1); 
}

/* Toggle de observación */
.observacion-toggle[b-5vy0kwpvii] {
    background: rgba(35, 35, 35, 1);
    border-radius: 0.7rem;
    border:solid 2px rgba(255,255,255,1) ;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-size:0.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    gap: 0.3rem;
}

.observacion-toggle:hover[b-5vy0kwpvii] {
    /*background: rgba(255, 255, 255, 0.15);*/
}

.observacion-toggle.active[b-5vy0kwpvii] {
    background: rgba(255, 255, 255, 0.15);
}

.check-icon[b-5vy0kwpvii] {
    font-weight: bold;
    color: rgb(76, 175, 80);
}

/* Modo de reproducción automática */
.autoplay-mode[b-5vy0kwpvii] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
}

.autoplay-btn[b-5vy0kwpvii] {
    background: rgba(35, 35, 35, 1);
    border-radius: 0.7rem;
    border:solid 2px rgba(255,255,255,1) ;
    padding: 0.3rem 0rem;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.autoplay-btn:hover[b-5vy0kwpvii] {
    background: rgba(255, 255, 255, 0.15);
    
}

.autoplay-btn.active[b-5vy0kwpvii] {

    background: rgba(255, 255, 255, 0.15);
   
}

/* Indicador de carga */
.loading-indicator[b-5vy0kwpvii] {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 0rem 0.3rem;
}

/* Responsive - Móvil */
/*@media (max-width: 767px) {*/
/*    .audio-player-container {*/
/*        padding: 1rem 0.75rem;*/
/*    }*/

/*    .article-title {*/
/*        font-size: 1rem;*/
/*    }*/

/*    .control-btn {*/
/*        min-width: 2.5rem;*/
/*        padding: 0.6rem 0rem;;*/
/*    }*/

/*    .depth-btn, .autoplay-btn {*/
/*        font-size: 0.8rem;*/
/*        padding: 0.6rem 0rem;;*/
/*    }*/
/*}*/
/* _content/ReferenceAI/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-mkg9auylib] {
    position: relative;
    min-height: -webkit-fill-available; /* iOS Safari */
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top, 0px);
}

/* En modo fullscreen (PWA instalada), usar toda la pantalla */
@media (display-mode: fullscreen), (display-mode: standalone) {
    .page-container[b-mkg9auylib] {
        min-height: 100vh;
        padding-top: 0;
    }
}

/* ====================================================================
   EPIC HEADER - Degradado + Shadow + Scroll Animation
   ==================================================================== */

.epic-header[b-mkg9auylib] {
    /* Degradado: Negro → Gris → Negro (efecto profesional) */
    background: linear-gradient(180deg, 
        rgb(0, 0, 0) 0%,        /* Negro absoluto arriba */
        rgb(35, 35, 35) 30%,    /* Transición a gris */
        rgb(37, 37, 37) 40%,    /* Gris más claro en el centro */
        rgb(20, 20, 20) 100%    /* Negro absoluto abajo */
    );

    /* Shadow fuerte debajo del header */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);

    /* Altura normal del header */
    height: auto;

    /* Display flex para alinear contenido */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Transiciones suaves para todo */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado SCROLLED - Header comprimido */
.epic-header.scrolled[b-mkg9auylib] {
    padding-top: max(env(safe-area-inset-top), 0.5rem) !important;
    padding-bottom: 0.5rem !important;

    /* Shadow más pronunciado al scrollear */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);

    /* Degradado más sutil */
    background: linear-gradient(180deg, 
        rgb(10, 10, 10) 0%, 
        rgb(25, 25, 25) 100%);
}

/* Título principal */
.header-title[b-mkg9auylib] {
    font-size: 1.5rem;
    font-weight: bold;
    color: aliceblue;
    font-family: 'Trebuchet MS';
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Título en estado scrolled - más pequeño */
.scrolled .header-title[b-mkg9auylib] {
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}

/* Tagline */
.header-tagline[b-mkg9auylib] {
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: aliceblue;
    opacity: 1;
    max-height: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tagline en estado scrolled - OCULTO */
.scrolled .header-tagline[b-mkg9auylib] {
    opacity: 0;
    max-height: 0;
    margin-top: 0 !important;
    transform: translateY(-10px);
}

/* Logo - transición de tamaño */
.header-logo[b-mkg9auylib] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo más pequeño al scrollear */
.scrolled .header-logo[b-mkg9auylib] {
    width: 32px !important;
    height: 32px !important;
}

@media (min-width: 768px) {
    .scrolled .header-logo[b-mkg9auylib] {
        width: 38px !important;
        height: 38px !important;
    }
}

/* Espaciador también se ajusta 
.header-spacer {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*/
.scrolled .header-spacer[b-mkg9auylib] {
    width: 32px !important;
}

@media (min-width: 768px) {
    .scrolled .header-spacer[b-mkg9auylib] {
        width: 38px !important;
    }
}

/* Animación de entrada del header */
@keyframes headerSlideDown-b-mkg9auylib {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.epic-header[b-mkg9auylib] {
    animation: headerSlideDown-b-mkg9auylib 0.6s ease-out;
}

/* ====================================================================
   HEADER OFFSET - Espaciador para header fijo
   ==================================================================== */

/* Div que ocupa el espacio del header fijo - misma altura exacta que el header */
.header-offset[b-mkg9auylib] {
    /* Cálculo: padding-top + contenido aproximado + padding-bottom */
    height: calc(max(env(safe-area-inset-top), 2.5rem) + 85px);
    width: 100%;
}

/* En móvil, contenido ligeramente más chico */
@media (max-width: 768px) {
    .header-offset[b-mkg9auylib] {
        height: calc(max(env(safe-area-inset-top), 2.5rem) + 80px );
    }
}

/* ====================================================================
   HEADER LAYOUT - Logo izquierda, Título centrado
   ==================================================================== */

.header-layout[b-mkg9auylib] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

/* Contenedor del logo (izquierda) */
.header-logo-container[b-mkg9auylib] {
    display: flex;
    align-items: center;
    padding-left: 1rem; /* Margen del borde izquierdo */
}

/* Logo responsive - 15% más grande */
.header-logo[b-mkg9auylib] {
    width: 55px;        /* 36px + 15% ≈ 41px */
    height: 55px;
    object-fit: contain;
    border-radius: 9px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Logo un poco más grande en desktop */
@media (min-width: 768px) {
    .header-logo[b-mkg9auylib] {
        width: 51px;    /* 44px + 15% ≈ 51px */
        height: 51px;
        border-radius: 11px;
    }

    .header-logo-container[b-mkg9auylib] {
        padding-left: 1.5rem;
    }
}

/* Efecto hover sutil */
.header-logo:hover[b-mkg9auylib] {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)) brightness(1.15);
    cursor: pointer;
}

/* Contenedor del título (centro absoluto) */
.header-title-container[b-mkg9auylib] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Centrado absoluto en la pantalla */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Espaciador derecho para balance */
.header-spacer[b-mkg9auylib] {
    width: 41px; /* Mismo ancho que el logo en móvil */
}

@media (min-width: 768px) {
    .header-spacer[b-mkg9auylib] {
        width: 51px; /* Mismo ancho que el logo en desktop */
    }
}

/* Animación de entrada */
@keyframes logoFadeIn-b-mkg9auylib {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.header-logo[b-mkg9auylib] {
    animation: logoFadeIn-b-mkg9auylib 0.6s ease-out;
}

main[b-mkg9auylib] {
    flex: 1;
}

.sidebar[b-mkg9auylib] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mkg9auylib] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-mkg9auylib]  a, .top-row[b-mkg9auylib]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-mkg9auylib]  a:hover, .top-row[b-mkg9auylib]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-mkg9auylib]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-mkg9auylib] {
        justify-content: space-between;
    }

    .top-row[b-mkg9auylib]  a, .top-row[b-mkg9auylib]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-mkg9auylib] {
        flex-direction: row;
    }

    .sidebar[b-mkg9auylib] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mkg9auylib] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mkg9auylib]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mkg9auylib], article[b-mkg9auylib] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mkg9auylib] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mkg9auylib] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.page-container[b-mkg9auylib] {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.background-video[b-mkg9auylib] {
    position: fixed;
    top: 0;
    left: 0; 
     object-fit:fill;
    /* object-position: center;  */
    background-color: rgb(43, 43, 43); 
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.content-container[b-mkg9auylib] {
    position: relative;
    z-index: 1;
    max-width: 50rem;
    width: 100%;
    padding: 0rem 1.3rem;
}

.app-bar-safe-area[b-mkg9auylib] {
    padding-top: env(safe-area-inset-top);
    box-sizing: border-box;
}
/* _content/ReferenceAI/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-12tx46afpk] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-12tx46afpk] {
    background-color: rgba(255, 255, 255, 0.5);
}

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

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

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

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

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

    .nav-item[b-12tx46afpk]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

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

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

.nav-scrollable[b-12tx46afpk] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-12tx46afpk] {
    display: block;
}

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

    .nav-scrollable[b-12tx46afpk] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/ReferenceAI/Components/MyComponents/ArticleCard.razor.rz.scp.css */

[b-t2sj246bfe] .interactive-card {
    cursor: pointer;
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
    -webkit-tap-highlight-color: transparent; /* iOS: quita highlight gris */
    background-color: rgba(41, 41, 41, 0.85) !important; /* rgba(40, 40, 60, 0.8) !important; */
    border: 1px solid rgba(200, 200, 200, 0.5) !important;
    border-radius: 13px !important;
    /* box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.55); */
    /* box-shadow: -5px -5px 15px rgb(29, 95, 182) !important; */
    box-shadow: -5px -5px 15px rgb(29, 111, 182) !important;
    /* box-shadow: -5px -5px 15px rgb(29 153 182) !important; */
}

[b-t2sj246bfe] .mud-typography.mud-typography-body1 {
    opacity: 0.77 !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

[b-t2sj246bfe] .mud-typography.mud-typography-h6 {
    opacity: 0.90 !important;
    /*color: white !important;*/
    font-size: 20px !important;
    font-weight: 600 !important;
}

[b-t2sj246bfe] .interactive-card.is-expanded {
    background-color: rgba(40, 40, 40, 0.92) !important;
}

/* Contenido de paneles de expansión */
[b-t2sj246bfe] .mud-expand-panel .mud-expand-panel-content {
    padding-bottom: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

[b-t2sj246bfe] .interactive-card .mud-expand-panel .mud-panel-expanded {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

[b-t2sj246bfe] .mud-expand-panel .mud-expand-panel-header {
    padding-left: 0;
    padding-right: 0;
}

/* Leve “lift” en hover (desktop) */
[b-t2sj246bfe] .interactive-card:hover {
    transform: translateY(-2px);
}



/* Botón primary (variant=Filled) más sutil dentro de la card */
[b-t2sj246bfe] .interactive-card .mud-button-root.mud-button-filled.mud-button-filled-primary {
    background-color: color-mix(in srgb, var(--mud-palette-primary)50%, rgb(30, 30, 30) 50%) !important;
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 90%, rgb(25, 25, 25) 10%) !important;
}

/* ====================================================================
   BOTONES DE ACCIÓN (Audio y Compartir) - Esquina inferior derecha
   ==================================================================== */

/* Contenedor de botones */
.bottom-action-buttons[b-t2sj246bfe] {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: row;
    gap: 0.625rem; /* 10px - Espacio uniforme entre botones */
    align-items: center;
    z-index: 10;
}

/* Estilos base compartidos por ambos botones */
.action-btn[b-t2sj246bfe] {
    width: 2.5rem;           /* 40px - Tamaño exacto */
    height: 2.5rem;          /* 40px - Tamaño exacto */
    min-width: 2.5rem;       /* Forzar tamaño mínimo */
    min-height: 2.5rem;      /* Forzar tamaño mínimo */
    padding: 0;              /* Sin padding interno */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-btn:hover[b-t2sj246bfe] {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Estado activo del botón de audio */
.audio-btn.active[b-t2sj246bfe] {
    background: rgba(76, 175, 80, 0.4);
    border-color: rgba(76, 175, 80, 0.8);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    animation: pulse-b-t2sj246bfe 2s infinite;
}

.audio-btn.active:hover[b-t2sj246bfe] {
    background: rgba(76, 175, 80, 0.6);
    border-color: rgba(76, 175, 80, 1);
}

/* Efecto al hacer click en compartir */
.share-btn:active[b-t2sj246bfe] {
    background: rgba(76, 175, 80, 0.6);
    border-color: rgba(76, 175, 80, 0.9);
    transform: scale(0.95);
}

/* Iconos dentro de los botones */
.action-icon[b-t2sj246bfe] {
    font-size: 1.25rem;      /* 20px - Tamaño del icono */
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animación de pulso para audio activo */
@keyframes pulse-b-t2sj246bfe {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.8);
    }
}

/* Responsive - Botones más pequeños en móvil */
@media (max-width: 767px) {
    .bottom-action-buttons[b-t2sj246bfe] {
        bottom: 0.5rem;
        right: 0.5rem;
        gap: 0.5rem;
    }

    .action-btn[b-t2sj246bfe] {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
        min-height: 2rem;
    }

    .action-icon[b-t2sj246bfe] {
        font-size: 1rem;
    }
}
/* _content/ReferenceAI/Components/MyScoopedButton.razor.rz.scp.css */
[b-ipyjx24ke8] .custom {
    background-color: red;
    border-color: red;
    margin: 100px;
}
