/* /Components/InfoOverlayComponent/InfoOverlayComponent.razor.rz.scp.css */

.overlay-background[b-8uuel29o61] {
    position: fixed;
    top: var(--navigation-bar-height);
    left: 0;
    width: 100vw;
    height: calc(100dvh - var(--navigation-bar-height));
    background-color: transparent;
    transition: background-color 0.4s ease-in-out;
    pointer-events: none;
}

.overlay-background.visible[b-8uuel29o61] {
    pointer-events: auto;
    cursor: pointer;
    background-color: #000000BB;
}

.clickable-layer[b-8uuel29o61] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
    background-color: transparent;
}


.info-overlay[b-8uuel29o61] {
    position: fixed;
    top: calc(100dvh);
    left: 0;
    width: 100vw;
    height: calc(100dvh - var(--navigation-bar-height));
    color: white;
    z-index: 200;
    transition: top 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-color: transparent;
    pointer-events: none;
    font-family: "canada-type-gibson", sans-serif;
}

.info-overlay.visible[b-8uuel29o61] {
    top: var(--navigation-bar-height);
    pointer-events: auto;
    cursor: pointer;
}

.content-container[b-8uuel29o61] {
    position: relative;
    background: #232322;
    width: 100%;
    max-height: 80%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-inline: 20px;
    padding-top: 15px;
    border-top: 2px solid #444;
    border-left: 2px solid #444;
    border-right: 2px solid #444;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    pointer-events: auto;
    cursor: auto;
}

.content-container[b-8uuel29o61]::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    border-radius: 10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0;
    z-index: -1;
    filter: blur(10px);
    transition: top 0.4s ease-in-out,  max-height 0.4s ease-in-out;
}


.close-button[b-8uuel29o61] {
    position: absolute;
    align-self: flex-end;
    background-color: transparent;
    color: #ccc;
    border: none;
    font-size: 1.5em;
    margin-top: 5px;
    cursor: pointer;
    line-height: 1;
    z-index: 99;
}
/* /Components/KaraokeComponent/KaraokeComponent.razor.rz.scp.css */
.overlay[b-w9njysturd] {
    position: fixed;
    top: calc(100dvh); /* Startposition außerhalb des Bildschirms */
    left: 0;
    width: 100vw; /* Volle Breite des Bildschirms */
    height: calc(100dvh - var(--navigation-bar-height)); /* Höhe minus Navigationsleiste */
    background: linear-gradient(to bottom, #282114, #000000);
    color: white;
    z-index: 100;
    transition: top 0.4s ease-in-out;
    display: flex;
    flex-direction: column; /* Anordnung der Kinder in einer Spalte */
}

.overlay.visible[b-w9njysturd] {
    top: var(--navigation-bar-height); /* Setze die Position auf die Höhe der Navigationsleiste */
}

.top-bar[b-w9njysturd] {
    position: fixed;
    width: 100%;
    height: var(--secondary-topbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 20px;
    margin: 0;
}

.top-bar-back-icon[b-w9njysturd] {
    position: fixed;
    left: 12px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    cursor: pointer;
}

.top-bar .title-container[b-w9njysturd] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(18px, 2vw, 24px);
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 600;
    font-style: normal;

}

.title-container[b-w9njysturd] {
    padding-top: 4px;
    margin-inline: 52px;
}

.learn-view[b-w9njysturd] {
    flex: 1; 
    overflow-y: hidden;
}
/* /Components/LoadingSpinner/LoadingSpinner.razor.rz.scp.css */
.spinner-container[b-3p9g9wmqo8] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.spinner[b-3p9g9wmqo8] {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin-b-3p9g9wmqo8 1s ease-in-out infinite;
    width: 2rem;
    height: 2rem;
}

.spinner-large .spinner[b-3p9g9wmqo8] {
    width: 3rem;
    height: 3rem;
    border-width: 4px;
}

.text-primary[b-3p9g9wmqo8] {
    color: var(--bs-primary, #0d6efd);
}

.text-secondary[b-3p9g9wmqo8] {
    color: var(--bs-secondary, #6c757d);
}

.text-success[b-3p9g9wmqo8] {
    color: var(--bs-success, #198754);
}

.text-danger[b-3p9g9wmqo8] {
    color: var(--bs-danger, #dc3545);
}

.text-warning[b-3p9g9wmqo8] {
    color: var(--bs-warning, #ffc107);
}

.text-info[b-3p9g9wmqo8] {
    color: var(--bs-info, #0dcaf0);
}

@keyframes spin-b-3p9g9wmqo8 {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/ModuleCard/ModuleCard.razor.rz.scp.css */
.module-card[b-9srbr7nib5] {
    border-radius: 10px;
    width: 207px;
    height: var(--module-card-height);
    padding-left: 13px;
    padding-top: 8px;
    padding-right: 13px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    scroll-snap-align: start;
    transition: width 0.3s ease;
}

.module-subtitle[b-9srbr7nib5] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    margin-top: -4px;
    white-space: nowrap;     
    overflow: hidden;         
    text-overflow: ellipsis;
}

.module-card.big-card[b-9srbr7nib5] {
    width: 100%; 
    flex-shrink: 1; 
    min-height: 150px;
}

.module-header[b-9srbr7nib5] {
    display: flex;
    flex-direction: column;
}

.module-heart-icon[b-9srbr7nib5] {
    margin-left: auto; 
    display: flex; 
    align-items: center; 
    margin-top: -4px;
}

.module-footer[b-9srbr7nib5] {
    display: flex;
    flex-direction: column; 
    justify-content: start; 
}

.module-footer-row[b-9srbr7nib5] {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.module-heart-button[b-9srbr7nib5] {
    margin-left: auto; 
    display: flex;
    align-items: center;
    background: none;
    border: none; 
    cursor: pointer;
    margin-bottom: 8px;
}

.module-footer-row span[b-9srbr7nib5] {
    margin-right: 5px; 
}

.module-title[b-9srbr7nib5] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    white-space: normal;
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.module-info-badge[b-9srbr7nib5] {
    background-color: var(--background); 
    color: var(--white); 
    padding-left: 11px;
    padding-right: 11px;
    border-radius: 8px;
    font-family: canada-type-gibson, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 19px;
    line-height: 10px;
    letter-spacing: 0.36px;
    margin-bottom: 8px; 
    user-select: none;
}
/* /Components/NavigationBarComponent/NavigationBarComponent.razor.rz.scp.css */

.header[b-x7443mmyw1] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 15px;
    padding-inline: 20px 10px;
    color: white;
    border-bottom: 2px solid var(--border-dark);
    z-index: 999;
    background-color: var(--background-navbar);
}



.clickable-element[b-x7443mmyw1] {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--text-faded);
}

.notification[b-x7443mmyw1] {
    display: inline-block;
    cursor: pointer;
    align-items: center;
    width: 26px;
    height: 26px;
}

.notification-bell[b-x7443mmyw1] {
    background-color: transparent;
    width: 24px;
    height: 24px;
}

.notification-badge[b-x7443mmyw1] {
    position: relative;
    bottom: 18px;
    left: 2px;
    width: 8px;
    height: 8px;
    background-color: var(--yellow);
    border-radius: 50%;
    border: 2px solid white;
}


.header-left-section[b-x7443mmyw1] {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-right-section[b-x7443mmyw1] {
    display: flex;
    align-items: center;
    gap: 20px;
    
}

.headline-label[b-x7443mmyw1] {
    margin-left: 10px;
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1ch;
}

.menu[b-x7443mmyw1] {
    position: absolute;
    z-index: -1;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 21px;
    margin-top: var(--navigation-bar-height);
    top: 0;
    right: 0;
    background-image: linear-gradient(to top, #2D2D2D, #13120c) ;
    border-radius: 0 0 0 20px;
    padding: 20px;
    border-left: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    text-align: right;
    box-shadow: -10px 5px 15px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: collapse;
    transition: opacity 0.3s ease-in, height 0.6s ease-in, visibility 0.6s ease;
}

.menu-visible[b-x7443mmyw1] {
    visibility: visible;
    height: auto;
    width: auto;
    opacity: 1;
    transition: opacity 0.4s ease-in, height 0.5s ease-in, visibility 0.6s ease-in;
}

.icon[b-x7443mmyw1] {
    align-self: center;
    justify-self: center;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in
}

.icon-visible[b-x7443mmyw1] {
    opacity: 1;
    transform: scale(1);
}

.nav-divider[b-x7443mmyw1] {
    width: 100%;
    height: 2px;
    background-color: var(--border-grey);
    opacity: 0.8;
    border-radius: 100%;
}

.nav-link[b-x7443mmyw1] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1ch;
    font-size: 16px;
    padding-left: 15px;
    cursor: pointer;
}

.logout-button[b-x7443mmyw1] {
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--red);
    gap: 8px;
    cursor: pointer;
}
.logout-button p[b-x7443mmyw1] {
    text-align: center;
    padding-top: 1px; /* push the text down JUST a bit ...*/
}
/* /Components/NotificationPanelComponent/NotificationPanelComponent.razor.rz.scp.css */
.notification-panel[b-quc46g4o25] {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100vw;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
}

.notification-message[b-quc46g4o25] {
    background-color: #444;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    text-align: center;
    pointer-events: auto;
    opacity: 1;
}

/* Klasse für das Ausblenden */
.notification-message.fade-out[b-quc46g4o25] {
    opacity: 0;
}


/* Farbvarianten */
.notification-message.info[b-quc46g4o25] { background-color: #2196f3; }
.notification-message.success[b-quc46g4o25] { background-color: #4caf50; }
.notification-message.warning[b-quc46g4o25] { background-color: #ff9800; }
.notification-message.error[b-quc46g4o25] { background-color: #f44336; }

/* /Components/PlayerComponents/GlobalPlayerComponent/GlobalPlayerComponent.razor.rz.scp.css */
.player[b-elteaezzmh] {
    position: absolute;
    background-image: linear-gradient(-60deg, rgba(62,55,52,0.95) 0%, rgba(43,42,42, 0.95) 42%, rgba(33,33,33,0.95) 100%);
    height: var(--music-player-height);
    border-radius: 22px;
    border: 3px solid #353436;
    display: flex;
    bottom: 20px;
    left: 10px;
    right: 10px;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
    gap: 20px;
}

.episode-container[b-elteaezzmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.info-container[b-elteaezzmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: auto;
    cursor: pointer;
}

.info-container.inactive[b-elteaezzmh] {
    pointer-events: none;
    cursor: none;
}

.controls[b-elteaezzmh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.play-pause[b-elteaezzmh] {
    position: relative; /* Wichtig für ::before */
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.2;
    pointer-events: none;
}

.play-pause.visible[b-elteaezzmh] {
    opacity: 1.0;
    pointer-events: auto;
}

.play-pause[b-elteaezzmh]::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 68px; /* Größer als der Button */
    height: 68px;
    border-radius: 50%; /* Runde Form */
    background: conic-gradient(
            #a785f0 calc(var(--progress, 0) * 1deg), /* Fortschrittsfarbe */
            transparent calc(var(--progress, 0) * 1deg) /* Restlicher Teil */
    );
    z-index: -1; /* Hinter dem Button */
}

.nextpref[b-elteaezzmh] {
    opacity: 0.2;
    cursor: pointer;
    pointer-events: none;
}

.nextpref.visible[b-elteaezzmh] {
    opacity: 1.0;
    pointer-events: auto;
}

.not-data-text[b-elteaezzmh], .loading-text[b-elteaezzmh] {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "canada-type-gibson", sans-serif;
    color: #888;
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 400;
    user-select: none;
    pointer-events: none;
    cursor: pointer;
}

.title-text[b-elteaezzmh] {
    display: -webkit-box;
    justify-content: center;
    align-items: center;
    font-family: "canada-type-gibson", sans-serif;
    color: #ccc;
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 400;
    user-select: none;
    cursor: pointer;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subtitle-text[b-elteaezzmh] {
    display: -webkit-box;
    justify-content: center;
    align-items: center;
    font-family: "canada-type-gibson", sans-serif;
    color: #888;
    font-size: clamp(8px, 2vw, 22px);
    font-weight: 400;
    user-select: none;
    cursor: pointer;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.initial-text[b-elteaezzmh] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "canada-type-gibson", sans-serif;
    color: #ccc;
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 400;
    user-select: none;
}
/* /Components/PlayerComponents/KaraokePlayerComponent/KaraokePlayerComponent.razor.rz.scp.css */
.player[b-5vsye94jlv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    width: 100%;
    height: var(--music-player-height) + 60px;
    padding-block: 20px;
}

.progress-bar[b-5vsye94jlv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    position: relative;
    padding: 10px;
    opacity: 0.0;
    pointer-events: none;
    appearance: none; /* Standardstyling des Browsers deaktivieren */
}

.progress-bar.visible[b-5vsye94jlv] {
    opacity: 1.0;
    pointer-events: auto;
}

.progress-bar input[type="range"][b-5vsye94jlv] {
    width: 100%;
    appearance: none;
    background: #555;
    height: 4px;
    border-radius: 2px;
}

.progress-bar input[type="range"][b-5vsye94jlv]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}


.time-wrapper[b-5vsye94jlv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-family: "canada-type-gibson", sans-serif;
    color: white;
    opacity: 0.85;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 400;
    
    
}

.current-time[b-5vsye94jlv], .total-time[b-5vsye94jlv] {
    color: #ccc;
    user-select: none;
}

.current-time[b-5vsye94jlv] {
    left: 0;
}

.total-time[b-5vsye94jlv] {
    right: 0;
}

.controls[b-5vsye94jlv] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

button[b-5vsye94jlv] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.play-pause[b-5vsye94jlv] {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.2;
    pointer-events: none;
}

.play-pause.visible[b-5vsye94jlv] {
    opacity: 1.0;
    pointer-events: auto;
}


.nextpref[b-5vsye94jlv] {
    opacity: 0.2;
    cursor: pointer;
    pointer-events: none;
}

.nextpref.visible[b-5vsye94jlv] {
    opacity: 1.0;
    pointer-events: auto;
}

.time-range[b-5vsye94jlv] {
    width: 100%;
    cursor: pointer;
    appearance: none;
    background-color: #ddd;
    height: 5px;
    border-radius: 5px;
}

.time-range[b-5vsye94jlv]::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.time-range[b-5vsye94jlv]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-layout[b-6oigc0fn8a] {
    display: flex;
    flex-direction: column;
    height: 100dvh;
}

.nav-bar-wrapper[b-6oigc0fn8a] {
    position: relative;
    height: var(--navigation-bar-height);
}

.body-wrapper[b-6oigc0fn8a] {
    overflow: auto;
    flex: 1;
}
/* /Pages/BasePage/BasePage.razor.rz.scp.css */
.fullscreen-container[b-nmlzacd7i5] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* /Pages/DashboardPage/DashboardPage.razor.rz.scp.css */
/* /Pages/LoginPage/LoginPage.razor.rz.scp.css */
.full-screen-paper[b-wwahfdruf1] {
    width: 100dvw;
    height: 100dvh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.top-section[b-wwahfdruf1] {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 20px; 
    flex: 1;
}

.middle-container[b-wwahfdruf1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
    padding-block: 60px;
    flex: 1;
}

.bottom-section[b-wwahfdruf1] {
    padding-block: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    margin-top: auto;
    flex: 1;
}


.headline-label[b-wwahfdruf1] {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--text);
    text-shadow: 1px 1px 0 var(--border-white), -1px -1px 0 var(--border-white);
    text-align: center;
    line-height: 62px;
}

/*.login-button {*/
/*    margin-top: 40px;*/
/*    background-color: var(--yellow);*/
/*    width: 300px;*/
/*}*/

.forgot-password-link[b-wwahfdruf1] {
    display: block;
    margin-top: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "canada-type-gibson", sans-serif;
    font-size: 12px;
    cursor: pointer;
}

.not-registered-label[b-wwahfdruf1] {
    color: #FFFFFF;
    font-family: "canada-type-gibson", sans-serif;
    font-size: 14px;
}

.signup-link[b-wwahfdruf1] {
    margin-top: 10px;
    font-family: "canada-type-gibson", sans-serif;
    font-size: 16px;
    color: #EC704B;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}
/* /Pages/ModuleDetailPage/ModuleDetailPage.razor.rz.scp.css */
/* /Pages/TopicDetailPage/TopicDetailPage.razor.rz.scp.css */
/* /Views/InfoOverlayViews/EpisodeContextInfoView/EpisodeContextInfoView.razor.rz.scp.css */
.context-info-view[b-jskkx9t9op] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.info-header[b-jskkx9t9op] {
    position: relative;
    display: flex;
    flex-direction: column; /* Elemente im Header vertikal anordnen */
    align-items: start; /* Links ausrichten, um zentrierte Ausrichtung zu vermeiden */
    margin: 0;
    padding-block: 0 15px;
    width: 100%;
}

.info-header[b-jskkx9t9op]::after {
    position: absolute;
    margin: 0;
    content: '';
    left: -5%;
    right: 0;
    bottom: 0;
    width: 110%;
    height: 2px;
    background-color: var(--border-dark);
}

.info-title[b-jskkx9t9op] {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.info-subtitle[b-jskkx9t9op] {
    font-size: 1.0em;
    font-weight: bold;
    color: #ccc;
}

.info-content[b-jskkx9t9op] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.6;
    font-size: 0.9em;
    color: #ccc;
    overflow-y: auto;
    flex: 1;
    text-align: justify;
    margin-top: 15px;
    padding-bottom: 20px;
}

.info-button[b-jskkx9t9op] {
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--background-secondary);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    color: var(--text-on-bg-secondary);
    cursor: pointer;
    position: relative;
    gap: 15px;
    font-size: 18px;
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
}
.info-button p[b-jskkx9t9op] {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
}

/* /Views/InfoOverlayViews/ModuleDetailInfoView/ModuleDetailInfoView.razor.rz.scp.css */
.context-info-view[b-blzwwymv39] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.info-header[b-blzwwymv39] {
    position: relative;
    display: flex;
    flex-direction: column; /* Elemente im Header vertikal anordnen */
    align-items: start; /* Links ausrichten, um zentrierte Ausrichtung zu vermeiden */
    margin: 0;
    padding-block: 0 15px;
    width: 100%;
}

.info-header[b-blzwwymv39]::after {
    position: absolute;
    margin: 0;
    content: '';
    left: -5%;
    right: 0;
    bottom: 0;
    width: 110%;
    height: 2px;
    background-color: var(--border-dark);
}

.info-title[b-blzwwymv39] {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.info-subtitle[b-blzwwymv39] {
    font-size: 1.0em;
    font-weight: bold;
    color: #ccc;
}

.info-content[b-blzwwymv39] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.6;
    font-size: 0.9em;
    color: #ccc;
    overflow-y: auto;
    flex: 1;
    text-align: justify;
    margin-top: 15px;
    padding-bottom: 20px;
}
/* /Views/InfoOverlayViews/UserProfileInfoView/UserProfileInfoView.razor.rz.scp.css */
.context-info-view[b-7jtij0gczb] {
    height: calc(100vh - var(--navigation-bar-height));
    width: 100%;
    display: flex;
    flex-direction: column;
}

.info-header[b-7jtij0gczb] {
    position: relative;
    display: flex;
    flex-direction: column; /* Elemente im Header vertikal anordnen */
    align-items: start; /* Links ausrichten, um zentrierte Ausrichtung zu vermeiden */
    margin: 0;
    padding-block: 0 15px;
    width: 100%;
}

.info-header[b-7jtij0gczb]::after {
    position: absolute;
    margin: 0;
    content: '';
    left: -5%;
    right: 0;
    bottom: 0;
    width: 110%;
    height: 2px;
    background-color: var(--border-dark);
}

.info-title[b-7jtij0gczb] {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.info-subtitle[b-7jtij0gczb] {
    font-size: 1.0em;
    font-weight: bold;
    color: #ccc;
}

.info-content[b-7jtij0gczb] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.6;
    font-size: 0.9em;
    color: #ccc;
    overflow-y: auto;
    flex: 1;
    text-align: justify;
    margin-top: 15px;
    padding-bottom: 20px;
}

.profile-header[b-7jtij0gczb] {
    display: flex;
    align-items: center;
}

.profile-initials[b-7jtij0gczb] {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    min-width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.subtitle[b-7jtij0gczb] {
    color: gray;
    font-size: 0.9rem;
}

.profile-form .form-group[b-7jtij0gczb] {
    margin-bottom: 1rem;
    margin-inline: 0.25rem;
}


.form-control[b-7jtij0gczb] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-user-select: all;
    user-select: all;
}

.form-control:disabled[b-7jtij0gczb] {
    background-color: #777777; /* optional: leichtes Grau, kannst du anpassen */
    color: #ffffff;            /* weißer Text */
    /*opacity: 1;                !* wichtig: verhindert, dass Browser den Text ausgegraut darstellen *!*/
}


.button-wrapper[b-7jtij0gczb] {
    display: flex;
    justify-content: flex-end;
}

.save-button[b-7jtij0gczb] {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.save-button:hover[b-7jtij0gczb] {
    background-color: #0056b3;
}

/* /Views/KaraokeComponentViews/LearnView/Components/WordBrick.razor.rz.scp.css */
.word-container[b-6tm9squk0q] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--wordbrick-text);
    font-family: "canada-type-gibson", sans-serif;
    font-size: 18px;
    margin-block: 5px;
    padding: 5px;
    border-radius: 8px;
    transition: background-color 0.05s ease-out;
    opacity: 0.25;
}

.selected[b-6tm9squk0q] {
    position: relative;
    /*background-color: var(--purple);*/
    
    color: var(--wordbrick-selected-text);
    transition: background-color 0.05s ease-in;
    opacity: 1.0;
}

.selected[b-6tm9squk0q]::after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background-color: var(--purple);
    border-radius: 8px;
    z-index: -1;
}

.target-word[b-6tm9squk0q] {
    font-weight: 500;
}

.known-word[b-6tm9squk0q] {
    font-weight: 300;
}
/* /Views/KaraokeComponentViews/LearnView/LearnView.razor.rz.scp.css */
.learnview[b-jx31t8klbt] {
    display: flex;
    flex-direction: column; /* Ermöglicht vertikales Stapeln */
    justify-content: center;
    align-items: center;
    height: 100%; /* Nimmt die volle Höhe des übergeordneten Containers ein */
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
    background-color: transparent;
}

.no-module[b-jx31t8klbt] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "canada-type-gibson", sans-serif;
    flex: 1;
}

.no-module h2[b-jx31t8klbt] {
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 23px;
    line-height: 28px;
}

.text-container[b-jx31t8klbt] {
    position: absolute; /* Why container MOVE!? */
    top: var(--secondary-topbar-height);
    left: 20px;
    right: 20px;
    bottom: calc(var(--music-player-height) + 80px);
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    overflow-y: auto; /* Ermöglicht Scrollen, falls Inhalt die Höhe überschreitet */
    scrollbar-width: none;
    border-radius: 10px;
    border: 2px solid var(--border-grey); /* Aktualisierte Randangabe */
    padding-inline: 10px;
    padding-block: 10px;
    
}

/* /Views/PageViews/HomeView/HomeView.razor.rz.scp.css */

.content[b-u2yirpysme] {
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.loading-spinner[b-u2yirpysme] {
    position: absolute;
    top: 45%;
    left: 45%;
    bottom: 45%;
    right: 45%;
}


.top-bar[b-u2yirpysme] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.welcome-container[b-u2yirpysme] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding-left: 20px;
    padding-top: 10px;
}

.welcome-label[b-u2yirpysme] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19px; 
    letter-spacing: 0.72px;
    color: var(--purple);
}

.topic-list[b-u2yirpysme] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 28px;
    padding-bottom: var(--global-player-padding-bottom);
}


.topic-label[b-u2yirpysme] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 0.1px;
    margin-left: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    display: inline-block;
    color: var(--text-on-bg-secondary);
}


.modules[b-u2yirpysme] {
    display: flex;
    flex-direction: row;
    gap: 23px;
    padding-left: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    padding-right: 207px;
}

.modules[b-u2yirpysme]::-webkit-scrollbar {
    display: none; 
}


.topic-filter-list[b-u2yirpysme] {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 20px; 
    margin-bottom: 10px;
    margin-inline: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
    padding-block: 15px;
    scrollbar-color: var(--background-secondary);
}

.topic-filter-list[b-u2yirpysme]::-webkit-scrollbar {
    scrollbar-width: thin;
}

.sidescroller-fadeout[b-u2yirpysme], .filter-fadeout[b-u2yirpysme] {
    position: relative; /* Set relative positioning */
    overflow: hidden; /* Prevent overflow */
}

.sidescroller-fadeout[b-u2yirpysme]::after, .filter-fadeout[b-u2yirpysme]::after {
    content: '';
    position: absolute;
    width: 20px; /* Width of the fadeout effect */
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 98%); /* Fade from transparent to 80% black */
    pointer-events: none; /* Ensure the fadeout area doesn't block click interactions */
    z-index: 2;
    right: 0; /* Align to the right edge */
    top: 0; /* Align to the top */
    height: 100%; /* Fill the height of the parent */
}

.filter-fadeout[b-u2yirpysme]::after {
    margin-inline: 20px;
}


.topic-filter[b-u2yirpysme] {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    height: 32px;
    width: fit-content;
    padding-inline: 15px;
    padding-block: 12px 10px; /* More padding on top to center the font */
    border: 2px solid var(--border-white);
    background-color: transparent;
    color: white;
    transition: background-color 0.2s ease;
    cursor: pointer;
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.72px;
    user-select: none;
}

.topic-filter.selected[b-u2yirpysme] {
    background-color: white;
    color: black;
}


.fadeout-right[b-u2yirpysme] {
    display: none;
    isolation: isolate;
    position: absolute; /* Absolut positioniert, um es über den Inhalt zu legen */
    right: 0; /* Am rechten Rand des Bildschirms */
    top: 0;
    bottom: 0;
    width: 20px; /* Breite des Fadeout-Effekts */
    background: linear-gradient(to left, #000000, transparent); /* Verlauf von Schwarz nach Transparent */
    pointer-events: none; /* Sicherstellen, dass der Fadeout-Bereich nicht die Klick-Interaktionen blockiert */
}
/* /Views/PageViews/ModuleDetailView/Components/EpisodeCard.razor.rz.scp.css */
.episode-card[b-mrzxmplvtr] {
    position: relative;
    width: 100%;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: var(--background-secondary);
    color: var(--text-on-bg-secondary);
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 10fr 1fr;
    grid-template-areas: 'episode-id episode-text menu-icon';
    align-items: center; /* Centers content vertically */
}

.episode-id[b-mrzxmplvtr] {
    grid-area: episode-id;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    font-family: canada-type-gibson, sans-serif;
    font-weight: normal;
    font-size: 18px;
}

.episode-text[b-mrzxmplvtr] {
    grid-area: episode-text;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}

.episode-title[b-mrzxmplvtr] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    max-width: 98%;
}

.episode-subtitle[b-mrzxmplvtr] {
    font-family: canada-type-gibson, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--text-faded);
}

.menu-icon[b-mrzxmplvtr] {
    grid-area: menu-icon;
    font-size: 20px;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    cursor: pointer;
    text-align: end;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    user-select: none;
}

.menu-icon:active[b-mrzxmplvtr] {
    opacity: 0.7;
    background-color: rgba(255,255,255,0.2);
    transition: opacity 0.3s ease-out, background-color 0.3s ease-out;
}
/* /Views/PageViews/ModuleDetailView/ModuleDetailView.razor.rz.scp.css */
.module-detail-view[b-xeguepm09f] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - var(--navigation-bar-height));
    overflow-y: hidden;
}

.loading-spinner[b-xeguepm09f] {
    position: absolute;
    top: 45%;
    left: 45%;
    bottom: 45%;
    right: 45%;
}


.top-bar[b-xeguepm09f] {
    position: fixed;
    width: 100%;
    height: var(--secondary-topbar-height); 
    display: flex; 
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 0px;
    margin: 0;
}

.top-bar-back-icon[b-xeguepm09f] {
    width: 40px;
    position: fixed;
    left: 12px;
    padding: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    cursor: pointer;
}

.top-bar .title-container[b-xeguepm09f] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(18px, 2vw, 24px);
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 600;
    font-style: normal;

}

.title-container[b-xeguepm09f] {
    padding-top: 4px;
    margin-inline: 52px;
}


.info-subtitle[b-xeguepm09f] {
    font-size: 14px;
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}


.content[b-xeguepm09f] {
    flex: 1;
    margin-top: 60px; 
    padding-block: 0 var(--global-player-padding-bottom);
    padding-inline: 20px;
    color: white;
    overflow-y: auto;
}

.info-section[b-xeguepm09f] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details-info[b-xeguepm09f] {
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap; 
}

.details-info .info[b-xeguepm09f] {
    width: 45%; 
    max-width: 350px;
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    margin: 5px; 
    color: var(--text-faded);
}

.episodes[b-xeguepm09f] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-info-label[b-xeguepm09f] {
    font-family: canada-type-gibson, sans-serif; 
    font-size: 16px; 
    margin-right: 8px;
}

.detail-info-badge[b-xeguepm09f] {
    background-color: var(--background-secondary); 
    padding-inline: 15px;
    padding-block: 13px 11px;
    border-radius: 20px;
    font-family: canada-type-gibson, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 19px;
    line-height: 10px;
    letter-spacing: 0.36px;
    width: fit-content;
    user-select: none;
}


.link-section[b-xeguepm09f] {
    display: flex; 
    flex-direction: row; 
    justify-content: flex-start; 
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.link-badge[b-xeguepm09f] {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    height: 32px;
    width: fit-content;
    padding-inline: 15px;
    padding-block: 14px 12px; 
    border: 2px solid var(--border-white);
    background-color: transparent;
    color: white;
    transition: background-color 0.2s ease;
    cursor: pointer;
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.72px;
    user-select: none;
}
/* /Views/PageViews/TopicDetailView/TopicDetailView.razor.rz.scp.css */
.loading-spinner[b-8b2yrrqs55] {
    position: absolute;
    top: 45%;
    left: 45%;
    bottom: 45%;
    right: 45%;
}

.topic-detail-view[b-8b2yrrqs55] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - var(--navigation-bar-height));
    overflow-y: hidden;
}

.top-bar[b-8b2yrrqs55] {
    position: fixed;
    width: 100%;
    height: var(--secondary-topbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 20px;
    margin: 0;
    background-color: black;
}

.top-bar-back-icon[b-8b2yrrqs55] {
    position: fixed;
    left: 12px;
    width: 40px;
    padding: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    cursor: pointer;
}

.top-bar .title-container[b-8b2yrrqs55] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(18px, 2vw, 24px);
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 600;
    font-style: normal;

}

.title-container[b-8b2yrrqs55] {
    padding-top: 4px;
    margin-inline: 52px;
}



.content[b-8b2yrrqs55] {
    flex: 1;
    margin-top: 60px;
    padding-block: 0 var(--global-player-padding-bottom);
    padding-inline: 20px;
    color: white;
    overflow-y: auto;
    gap: 23px;
    display: flex;
    flex-direction: column;
}
