/* /Components/Card/Card.razor.rz.scp.css */


.custom-card[b-n4r0ycre19] {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .custom-card:hover[b-n4r0ycre19] {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .custom-card .card-img-top[b-n4r0ycre19] {
        height: 180px;
        object-fit: cover;
    }

.custom-card-btn[b-n4r0ycre19] {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.4rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
    color: #fff;
}

    .custom-card-btn:hover[b-n4r0ycre19] {
        opacity: 0.9;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(13, 110, 253, 0.4);
    }

    .custom-card-btn:active[b-n4r0ycre19] {
        transform: translateY(0);
        box-shadow: none;
    }


.module-card.purchased[b-n4r0ycre19] {
    opacity: 0.65;
    background: #f8f9fa;
    border: 1px solid #d0d0d0;
}

    .module-card.purchased:hover[b-n4r0ycre19] {
        transform: none !important;
        box-shadow: none !important;
    }


.module-img[b-n4r0ycre19] {
    height: 180px;
    object-fit: cover;
}

.image-wrapper[b-n4r0ycre19] {
    position: relative;
}

/* /Components/CustomSidebar/CustomSidebar.razor.rz.scp.css */
.sidebar[b-s32p7hsxhs] {
    /*    background-color: var(--navbar-bg);
    transition: width 0.3s ease;
    flex-shrink: 0;*/
    background-color: var(--navbar-bg);
    transition: width 0.3s ease;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    align-self: flex-start;
    z-index: 100; /* 👈 fontos: sidebar mindig a body fölött */
}

.sidebar-user[b-s32p7hsxhs] {
    margin-right: auto; /* 👉 balra tolja */
    margin-top: -10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

    .sidebar-user.show[b-s32p7hsxhs] {
        opacity: 1;
        transform: translateX(0);
    }

.user-greeting[b-s32p7hsxhs] {
    opacity: 0.7;
}

.user-name[b-s32p7hsxhs] {
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-logo[b-s32p7hsxhs] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

    .sidebar-logo img[b-s32p7hsxhs] {
        height: 28px;
        width: auto;
    }


.fejlec-wrapper[b-s32p7hsxhs] {
    overflow: hidden;
    transition: max-width 0.3s ease, padding 0.3s ease;
    max-width: 260px;
    gap: 6px;
    background-color: var(--navbar-bg);
    border-bottom: 3px solid grey;
}

.collapsed-fejlec[b-s32p7hsxhs] {
    max-width: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.fejlec-link[b-s32p7hsxhs] {
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.fejlec-text[b-s32p7hsxhs] {
    transition: opacity 0.3s ease, max-width 0.3s ease;
    overflow: hidden;
    max-width: 200px;
    opacity: 1;
}

.collapsed-fejlec .fejlec-text[b-s32p7hsxhs] {
    max-width: 0;
    opacity: 0;
}
    
.sidebar-text[b-s32p7hsxhs] {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
}


.collapsed-sidebar[b-s32p7hsxhs] {
        width: 60px !important;
    transition: width 0.3s;
    position: relative; 
    overflow: visible !important;  
    z-index: 200;

}

    .collapsed-sidebar .sidebar-text[b-s32p7hsxhs] {
        opacity: 0;
        visibility: hidden;
    }

    .collapsed-sidebar .nav-link[b-s32p7hsxhs] {
        justify-content: center;
    }

    /*összecsukott verzióban elrejtem a szöveget*/
    .collapsed-sidebar .nav-item span[b-s32p7hsxhs],
    .collapsed-sidebar .pt-4 span[b-s32p7hsxhs] {
        max-width: 0;
    }

.nav-item[b-s32p7hsxhs]  a.active {
    background-color: var(--navbar-hover);
    color: white;
}

.nav-item[b-s32p7hsxhs]  a:hover {
    background-color: var(--navbar-hover);
    color: white;
}

.nav > li + li[b-s32p7hsxhs] {
    margin-top: 2px;
}

.nav .submenu[b-s32p7hsxhs] {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.nav-link[b-s32p7hsxhs] {
    padding-top: 10px;
    padding-bottom: 10px;
}


.nav .nav-link[b-s32p7hsxhs] {
    cursor: pointer;
}

    .nav .nav-link:hover[b-s32p7hsxhs] {
        background-color: var(--navbar-hover);
        text-decoration: none;
    }


.nav .nav-item ul[b-s32p7hsxhs] {
    list-style-type: none;
    padding-left: 0.5rem;
}

.collapsed-sidebar .nav .nav-item ul[b-s32p7hsxhs] {
    display: none;
}


.collapsed-indicator[b-s32p7hsxhs] {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-left: auto;
    line-height: 1;
    padding-right: 4px;
}

.small-indicator[b-s32p7hsxhs] {
    font-size: 0.4rem;
    color: #ccc;
    margin-left: auto;
}


.min-vh-100[b-s32p7hsxhs] {
    width: 260px;
    transition: width 0.3s;
}
.sidebar-brand[b-s32p7hsxhs] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .sidebar-brand img[b-s32p7hsxhs] {
        width: 48px;
        height: auto;
    }

.brand-title[b-s32p7hsxhs] {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}
.collapsed-sidebar .brand-text[b-s32p7hsxhs] {
    display: none;
}

.sidebar-header[b-s32p7hsxhs] {
    align-items: flex-start;
}

.collapsed-sidebar .sidebar-header[b-s32p7hsxhs] {
    align-items: center;
    text-align: center;
}
.collapsed-sidebar .sidebar-brand[b-s32p7hsxhs] {
    justify-content: center;
}


.brand-title[b-s32p7hsxhs] {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-user[b-s32p7hsxhs] {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255,255,255,0.85);
}

.menu-toggle-btn[b-s32p7hsxhs] {
    margin-left: 10px;
    margin-bottom: 10px;
    align-self: flex-start;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: white;
}

.sidebar-indicator[b-s32p7hsxhs] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .sidebar-indicator.show[b-s32p7hsxhs] {
        opacity: 1;
    }


@keyframes fadeIn-b-s32p7hsxhs {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.flyout-group[b-s32p7hsxhs] {
    position: relative;
}

.icon-button[b-s32p7hsxhs] {
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #007bff;
}

.flyout-menu[b-s32p7hsxhs] {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: whitesmoke;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
    /* min-width: 160px;*/
}

    .flyout-menu:has(.flyout-item:nth-child(2))[b-s32p7hsxhs] {
        min-width: 160px;
    }

    .flyout-menu:not(:has(.flyout-item:nth-child(2)))[b-s32p7hsxhs] {
        min-width: 160px;
        padding: 5px 8px; /* kisebb padding 1 elem esetén */
    }

.flyout-group:hover .flyout-menu[b-s32p7hsxhs] {
    display: block;
}


.flyout-item[b-s32p7hsxhs] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
}

    .flyout-item:hover[b-s32p7hsxhs] {
        background-color: var(--navbar-hover);
        color: white;
    }

/* /Components/CustomSidebar/CustomSidebarMobile/CustomMobileTopMenu.razor.rz.scp.css */
.mobile-topbar[b-ksn4xki1d8] {
    background-color: var(--navbar-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050; /* legyen a többi tartalom felett */
}

.navbar-toggler[b-ksn4xki1d8] {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: white;
}
.nav-item .nav-link[b-ksn4xki1d8] {
    display: block;
    /*padding: 12px 16px;*/
    padding-bottom: 0.5rem;
    color: white;
}
/*hogy ne lógjon bele a togglerbe*/
.nav-item:first-of-type[b-ksn4xki1d8] {
    padding-top: 1rem;
}


.nav-item[b-ksn4xki1d8]  a.active {
    background-color: var(--navbar-hover); /*active menü szín*/
    color: white; /*aktív menü betű szín*/
    border: 2px;
    border-radius: 5px;
}

.navbar-collapse[b-ksn4xki1d8]{
    padding: 3px;
}

.mobile-dropdown-menu[b-ksn4xki1d8] {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: var(--navbar-bg);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

    .mobile-dropdown-menu.open[b-ksn4xki1d8] {
        max-height: 460px; 
    }

.dropdown-header[b-ksn4xki1d8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px 8px 0px; /* ← itt szinte nincs bal padding */
    color: #ccc;
    font-weight: 600; /* opcionális, hogy jobban elkülönüljön */
}
 
.dropdown-items[b-ksn4xki1d8] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .dropdown-items.open[b-ksn4xki1d8] {
        max-height: 500px; /* elég nagy legyen, hogy kiférjen */
    }



.dropdown-link[b-ksn4xki1d8] {
    display: block;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
}

    .dropdown-link.active[b-ksn4xki1d8] {
        background-color: var(--navbar-hover);
        color: white;
        border-radius: 5px;
    }


.dropdown-section[b-ksn4xki1d8] {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    color: #ccc;
}

@media (max-width: 767.98px) {
    .layout-content[b-ksn4xki1d8] {
        padding-top: 60px;
        transition: padding-top 0.3s ease;
    }

        .layout-content.menu-open[b-ksn4xki1d8] {
            padding-top: 460px;
        }
    /*.layout-content {
        padding-top: 0;*/ /* ne növelje a magasságot */
    /*}

        .layout-content.menu-open {
            margin-top: 460px;*/ /* tolja le, de ne nyújtsa túl a contentet */
        /*}*/
}

.navbar-logo[b-ksn4xki1d8] {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.sidebar-user[b-ksn4xki1d8] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    max-width: 160px;
    transition: all 0.25s ease;
}

.user-greeting[b-ksn4xki1d8] {
    opacity: 0.65;
}
.user-name[b-ksn4xki1d8] {
    font-weight: 600;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/CustomSidebar/CustomTopNavmenu.razor.rz.scp.css */
.navbar[b-byy6qr9pbz] {
    background-color: var(--navbar-bg);
    transition: width 0.3s ease;
}

.nav-item[b-byy6qr9pbz]  a.active {
    background-color: var(--navbar-hover);
    border-radius: 6px;
    color: white;
}



.nav-item[b-byy6qr9pbz]  a:hover {
    background-color: var(--navbar-hover);
    border-radius: 6px;
    color: white;
}

.nav .nav-link[b-byy6qr9pbz] {
    cursor: pointer;
}

    .nav .nav-link:hover[b-byy6qr9pbz] {
        background-color: var(--navbar-hover);
        text-decoration: none;
    }


.nav .nav-item ul[b-byy6qr9pbz] {
    list-style-type: none;
    padding-left: 0.5rem;
}


/* =============================
   NAVBAR ACTIVE + HOVER OVERRIDES
   ============================= */


/* Sima menüpont (TopNav) */
/*.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:active {
    background-color: rgba(255,255,255,0.37) !important;
    border-radius: 6px;
    color: white !important;
}*/

/* Hover sima menüpont */
/*.navbar .nav-item .nav-link:hover {
    background-color: #1a4173 !important;
    border-radius: 6px;
    color: white !important;
}*/

/* Dropdown menüpont (NavLink) aktív */
/*.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:active {
    background-color: rgba(255,255,255,0.37) !important;
    border-radius: 6px;
    color: white !important;
}*/

/* Dropdown hover */
/*.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #1a4173 !important;
    border-radius: 6px;
    color: white !important;
}*/
/* /Components/Vimeo/Vimeo.razor.rz.scp.css */
/* Alap wrapper */
.video-wrapper[b-9c9urhhen5] {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 0.8rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Landscape videó */
    .video-wrapper.landscape[b-9c9urhhen5] {
        aspect-ratio: 16/9;
    }

    /* Portrait videó – alap desktop */
    .video-wrapper.portrait[b-9c9urhhen5] {
        aspect-ratio: 9/16;
        max-height: 600px; /* <-- !!! ez állítja meg desktopon */
        margin: auto;
    }

    /* Az iframe */
    .video-wrapper iframe[b-9c9urhhen5] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


/* --- MOBIL --- */
@media (max-width: 768px) {
    .video-wrapper.portrait[b-9c9urhhen5] {
        max-height: none; /* Mobilon legyen nagy */
        aspect-ratio: 9/16; /* Mobilra jó a magas */
    }
}
/* /Pages/Authentication/Login.razor.rz.scp.css */
/* Mobilon nincs "doboz" */
.login-card[b-4xuq3gz284] {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Tablet+ mérettől kap kártyát */
@media (min-width: 768px) {
    .login-card[b-4xuq3gz284] {
        background: #fff;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
        border-radius: .5rem;
    }
}
/* /Pages/Bemutatkozas.razor.rz.scp.css */
/* HERO SZEKCIÓ */
.hero-card[b-2ditupq6gb] {
    background: #800080;
    background: linear-gradient(90deg, rgba(128, 0, 128, 1) 0%, rgba(172, 176, 88, 1) 51%, rgba(158, 9, 158, 1) 100%);
    border-radius: 1.3rem;
    padding: 1.2rem 1.4rem;
    color: white;
}

/*.hero-content {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}*/

.profile-image[b-2ditupq6gb] {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-content[b-2ditupq6gb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.hero-logo[b-2ditupq6gb] {
    width: 100px;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .hero-content[b-2ditupq6gb] {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo[b-2ditupq6gb] {
        width: 80px;
        opacity: 0.8;
    }

    .profile-image[b-2ditupq6gb] {
        width: 120px;
        height: 120px;
    }
}


/*.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}*/

.hero-name[b-2ditupq6gb] {
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
}

.hero-subtitle[b-2ditupq6gb] {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Alap kártya */
.info-card[b-2ditupq6gb] {
    background: rgba(128, 0, 128, 0.05); /* halvány lila */
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 3.5rem;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    overflow: hidden;
    /* finom textúra */
    background-image: radial-gradient(rgba(128,0,128,0.06) 1px, transparent 1px), radial-gradient(rgba(128,0,128,0.04) 1px, transparent 1px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

    /* Felső színes csík */
    .info-card[b-2ditupq6gb]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 6px;
        width: 100%;
        background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    }

    /* Ikon bal oldalt */
    .info-card[b-2ditupq6gb]::after {
        content: "★"; /* <- tetszőleges ikon ide */
        position: absolute;
        top: 1.6rem;
        left: 1.2rem;
        font-size: 1.3rem;
        color: #9e099e;
        opacity: 0.9;
    }

    /* Hover animáció */
    .info-card:hover[b-2ditupq6gb] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }




/* EGYEDI LISTA */
.custom-list[b-2ditupq6gb] {
    padding-left: 1.2rem;
}

    .custom-list li[b-2ditupq6gb] {
        margin-bottom: 0.5rem;
        position: relative;
    }

/* BELÉPŐ ANIMÁCIÓ */
.fade-in[b-2ditupq6gb] {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp-b-2ditupq6gb 0.6s ease-out forwards;
}

@keyframes fadeInUp-b-2ditupq6gb {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESZPONZÍV */
@media (max-width: 576px) {
    .profile-image[b-2ditupq6gb] {
        width: 120px;
        height: 120px;
    }
}
/* /Pages/Felhasznalo/ModulokFelhasznalo.razor.rz.scp.css */
.player-layout[b-thc22dh00g] {
    display: flex;
    gap: 1.5rem;
}

/* BAL PANEL */
.left-panel[b-thc22dh00g] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* JOBB PANEL */
.right-panel[b-thc22dh00g] {
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    overflow-y: auto;
    max-height: calc(100vh - 8rem);
    position: sticky;
    top: 2rem;
}


/* --- VIDEO WRAPPER KEZELÉS --- */
/* A Vimeo komponensed wrapper osztályai működni fognak vele */


.video-wrapper[b-thc22dh00g] {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.video-playlist[b-thc22dh00g] {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

    .video-playlist li[b-thc22dh00g] {
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 6px;
    }

        .video-playlist li:hover[b-thc22dh00g] {
            background-color: #f1f1f1;
        }

        .video-playlist li.active[b-thc22dh00g] {
            background-color: #dee184;
            font-weight: 600;
        }

.fajl-playlist[b-thc22dh00g] {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

    .fajl-playlist li[b-thc22dh00g] {
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 6px;
    }

        .fajl-playlist li:hover[b-thc22dh00g] {
            background-color: #f1f1f1;
        }

        .fajl-playlist li.active[b-thc22dh00g] {
            background-color: #dee184;
            font-weight: 600;
        }

.alert-custom[b-thc22dh00g] {
    background: linear-gradient(90deg, rgba(128, 0, 128, 1) 0%, rgba(172, 176, 88, 1) 51%, rgba(158, 9, 158, 1) 100%);
    color: #ffffff; /* szöveg színe */
    font-weight: bold;
    border-color: #e2d966; /* keret */
    text-align: center;
}

.video-wrapper.landscape[b-thc22dh00g] {
    aspect-ratio: 16/9;
}

.video-wrapper.portrait[b-thc22dh00g] {
    aspect-ratio: 9/16;
    max-height: 600px; /* desktop limit */
}

@media (max-width: 768px) {
    .player-layout[b-thc22dh00g] {
        flex-direction: column;
    }

    .right-panel[b-thc22dh00g] {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: auto;
        position: relative;
        max-height: none;
    }

    .video-wrapper.portrait[b-thc22dh00g] {
        max-height: none;
        aspect-ratio: 9/16;
    }
}
/* /Pages/Felhasznalo/ModulVasarlas.razor.rz.scp.css */
.custom-card[b-yh2ku36j9s] {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .custom-card:hover[b-yh2ku36j9s] {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .custom-card .card-img-top[b-yh2ku36j9s] {
        height: 180px;
        object-fit: cover;
    }

.custom-card-btn[b-yh2ku36j9s] {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.4rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.1s ease;
    color: #fff;
}

    .custom-card-btn:hover[b-yh2ku36j9s] {
        opacity: 0.9;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(13, 110, 253, 0.4);
    }

    .custom-card-btn:active[b-yh2ku36j9s] {
        transform: translateY(0);
        box-shadow: none;
    }


.module-card.purchased[b-yh2ku36j9s] {
    opacity: 0.65;
    background: #f8f9fa;
    border: 1px solid #d0d0d0;
}

    .module-card.purchased:hover[b-yh2ku36j9s] {
        transform: none !important;
        box-shadow: none !important;
    }


.module-img[b-yh2ku36j9s] {
    height: 180px;
    object-fit: cover;
}

.image-wrapper[b-yh2ku36j9s] {
    position: relative;
}

.image-overlay[b-yh2ku36j9s] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
}
/* /Pages/Felhasznalo/Profilom.razor.rz.scp.css */
.modules-layout[b-e5k08v2dnw] {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
}

/* Baloldali modul lista */
.modules-list[b-e5k08v2dnw] {
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-card-rounded[b-e5k08v2dnw] {
    border-radius: 1.3rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: .25s ease;
    background: rgba(128, 0, 128, 0.05); /* halvány lila */
    /* lilás finom háttér */
    background-image: radial-gradient(rgba(128,0,128,0.06) 1px, transparent 1px), radial-gradient(rgba(128,0,128,0.04) 1px, transparent 1px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

    .module-card-rounded:hover[b-e5k08v2dnw] {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

/* A kép – szép kör alakban */
.module-thumb-rounded[b-e5k08v2dnw] {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* <-- ez teszi kör alakúvá */
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(128,0,128,0.15);
}

/* Tartalom */
.module-content h4[b-e5k08v2dnw] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #800080;
}

.module-content p[b-e5k08v2dnw] {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    opacity: .7;
}



/* Középső / jobb oldali chart */
.modules-chart[b-e5k08v2dnw] {
    flex: 1;
}

.chart-card[b-e5k08v2dnw] {
    /*    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);*/
    background: rgba(128, 0, 128, 0.05); /* halvány lila */
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 3.5rem;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    overflow: hidden;
    /* lilás finom háttér */
    background-image: radial-gradient(rgba(128,0,128,0.06) 1px, transparent 1px), radial-gradient(rgba(128,0,128,0.04) 1px, transparent 1px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Mobil nézet */
@media (max-width: 768px) {
    .modules-layout[b-e5k08v2dnw] {
        flex-direction: column;
    }

    .modules-list[b-e5k08v2dnw] {
        width: 100%;
        min-width: 100%;
    }
}


.chart-wrapper[b-e5k08v2dnw] {
    width: 100%;
    max-width: 700px; /* Desktop max */
}

/* Mobil */
@media (max-width: 480px) {
    .chart-wrapper[b-e5k08v2dnw] {
        max-width: 320px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .chart-wrapper[b-e5k08v2dnw] {
        max-width: 500px;
    }
}



.module-card-rounded.locked[b-e5k08v2dnw] {
    opacity: 0.45;
    filter: grayscale(100%);
    cursor: not-allowed;
    position: relative;
}

    .module-card-rounded.locked:hover[b-e5k08v2dnw] {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .module-card-rounded.locked[b-e5k08v2dnw]::after {
        content: "Megvásárlás";
        position: absolute;
        top: 8px;
        right: 12px;
        background: rgba(0,0,0,0.65);
        color: white;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
    }


.module-card-rounded.active[b-e5k08v2dnw] {
    position: relative;
}

    .module-card-rounded.active:hover[b-e5k08v2dnw] {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .module-card-rounded.active[b-e5k08v2dnw]::after {
        content: "Aktív";
        position: absolute;
        /*background: rgba(0,0,0,0.65);*/
        background: linear-gradient(90deg, rgba(128, 0, 128, 1) 0%, rgba(172, 176, 88, 1) 51%, rgba(158, 9, 158, 1) 100%);
        top: 8px;
        right: 12px;
        color: white;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
    }

.module-card-rounded.completed[b-e5k08v2dnw] {
    position: relative;
}

    .module-card-rounded.completed:hover[b-e5k08v2dnw] {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .module-card-rounded.completed[b-e5k08v2dnw]::after {
        content: "Befejezett";
        position: absolute;
        /*background: rgba(0,0,0,0.65);*/
        background-color: lightgreen ;
        top: 8px;
        right: 12px;
        color: white;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.5rem;
    }
/* /Pages/Kapcsolat.razor.rz.scp.css */
/* Hero */
.kapcsolat-hero[b-xe7zklkka4] {
    background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    padding: 2rem;
    border-radius: 1.2rem;
    color: #fff;
    text-align: center;
}

.kapcsolat-title[b-xe7zklkka4] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.kapcsolat-subtitle[b-xe7zklkka4] {
    margin-top: 0.4rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Kapcsolati kártyák */
.kapcsolat-card[b-xe7zklkka4] {
    background: rgba(128, 0, 128, 0.05); /* halvány lila */
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 3.5rem;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    overflow: hidden;
    /* lilás finom háttér */
    background-image: radial-gradient(rgba(128,0,128,0.06) 1px, transparent 1px), radial-gradient(rgba(128,0,128,0.04) 1px, transparent 1px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

    /* felső lila csík */
    .kapcsolat-card[b-xe7zklkka4]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    }

    /* ikon pozíció */
    .kapcsolat-card .icon[b-xe7zklkka4] {
        position: absolute;
        top: 1.4rem;
        left: 1.2rem;
        font-size: 1.6rem;
        color: #9e099e;
    }

    /* cím */
    .kapcsolat-card h3[b-xe7zklkka4] {
        margin-bottom: 0.5rem;
        color: #800080;
        font-weight: 600;
    }

    /* linkek */
    .kapcsolat-card a[b-xe7zklkka4] {
        color: #800080;
        font-weight: 600;
        text-decoration: none;
    }

        .kapcsolat-card a:hover[b-xe7zklkka4] {
            text-decoration: underline;
        }

    /* Hover effekt */
    .kapcsolat-card:hover[b-xe7zklkka4] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transition: 0.25s ease;
    }

/* Fade-in animáció */
.fade-in[b-xe7zklkka4] {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp-b-xe7zklkka4 0.6s ease forwards;
}

@keyframes fadeInUp-b-xe7zklkka4 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Letoltesek.razor.rz.scp.css */
/* Hero */
.letoltesek-hero[b-i0ylarzpse] {
    background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    padding: 2rem;
    border-radius: 1.2rem;
    color: #fff;
    text-align: center;
}

.letoltesek-title[b-i0ylarzpse] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.letoltesek-subtitle[b-i0ylarzpse] {
    margin-top: 0.4rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* letolteseki kártyák */
.letoltesek-card[b-i0ylarzpse] {
    background: rgba(128, 0, 128, 0.05); /* halvány lila */
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 3.5rem;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    overflow: hidden;
    /* lilás finom háttér */
    background-image: radial-gradient(rgba(128,0,128,0.06) 1px, transparent 1px), radial-gradient(rgba(128,0,128,0.04) 1px, transparent 1px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

    /* felső lila csík */
    .letoltesek-card[b-i0ylarzpse]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    }

    /* ikon pozíció */
    .letoltesek-card .icon[b-i0ylarzpse] {
        position: absolute;
        top: 1.4rem;
        left: 1.2rem;
        font-size: 1.6rem;
        color: #9e099e;
    }

    /* cím */
    .letoltesek-card h3[b-i0ylarzpse] {
        margin-bottom: 0.5rem;
        color: #800080;
        font-weight: 600;
    }

    /* linkek */
    .letoltesek-card a[b-i0ylarzpse] {
        color: #800080;
        font-weight: 600;
        text-decoration: none;
    }

        .letoltesek-card a:hover[b-i0ylarzpse] {
            text-decoration: underline;
        }

    /* Hover effekt */
    .letoltesek-card:hover[b-i0ylarzpse] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transition: 0.25s ease;
    }

/* Fade-in animáció */
.fade-in[b-i0ylarzpse] {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp-b-i0ylarzpse 0.6s ease forwards;
}

@keyframes fadeInUp-b-i0ylarzpse {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/ModulReszletek.razor.rz.scp.css */
/* Kártya alap */
.module-card[b-0wshu7a5h2] {
    border-radius: 1.2rem;
    overflow: hidden;
    background: #ffffff;
}

/* 1) Színes felső fejléc sáv gradienssel */
.module-header[b-0wshu7a5h2] {
    /*    background: linear-gradient(120deg, #0d6efd, #8a2be2);*/
    background: #800080;
    background: linear-gradient(90deg, rgba(128, 0, 128, 1) 0%, rgba(172, 176, 88, 1) 51%, rgba(158, 9, 158, 1) 100%);
    padding: 1.4rem 1.8rem;
    color: #ffffff;
}

.module-header-content[b-0wshu7a5h2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.module-title[b-0wshu7a5h2] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* 3) Kiemelő badge az előfeltételnek */
.badge-precondition[b-0wshu7a5h2] {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 2) Belépő animáció a tartalomra */
.fade-in[b-0wshu7a5h2] {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp-b-0wshu7a5h2 0.6s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInUp-b-0wshu7a5h2 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Belső tartalom – tipográfia */
.module-body[b-0wshu7a5h2] {
    background-color: #f8f9fa;
}

.module-description h4[b-0wshu7a5h2] {
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    color: #0d6efd;
    font-weight: 600;
}

.module-description p[b-0wshu7a5h2] {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

/* 4) Színes sorszámozott lista kerek jelölőkkel */
.module-description ol[b-0wshu7a5h2] {
    counter-reset: colorful-counter;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

    .module-description ol > li[b-0wshu7a5h2] {
        counter-increment: colorful-counter;
        position: relative;
        padding-left: 2.4rem;
        margin-bottom: 0.7rem;
    }

        .module-description ol > li[b-0wshu7a5h2]::before {
            content: counter(colorful-counter);
            position: absolute;
            left: 0;
            top: 0.1rem;
            width: 1.6rem;
            height: 1.6rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, #0d6efd, #8a2be2);
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
        }

/* 5) Két hasábos elrendezés – a Bootstrap row/col megcsinálja,
   itt csak egy kis plusz a jobb oldali dobozhoz */
.side-info-card[b-0wshu7a5h2] {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 0.7rem rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

    .side-info-card h5[b-0wshu7a5h2] {
        font-weight: 600;
        margin-bottom: 0.9rem;
        color: #0d6efd;
    }

/* Reszponzív finomhangolás */
@media (max-width: 991.98px) {
    .module-header[b-0wshu7a5h2] {
        padding: 1.2rem 1.3rem;
    }

    .module-title[b-0wshu7a5h2] {
        font-size: 1.5rem;
    }

    .module-body[b-0wshu7a5h2] {
        padding: 1.4rem !important;
    }
}



/*
.image-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.8rem;
    box-shadow: 0 0.25rem 0.7rem rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
    text-align: center;
}

    .image-card img {
        border-radius: 0.8rem;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
*/

/*
.image-card {
    width: 100%;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.8rem;
    box-shadow: 0 0.25rem 0.7rem rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

    .image-card img {
        width: 100%;
        height: auto;
        border-radius: 0.8rem;
        object-fit: cover;
    }
*/


.image-card[b-0wshu7a5h2] {
    background: #ffffff;
    border-radius: 1rem;
    padding: 0; /* hogy a kép tényleg kitöltse a keretet */
    box-shadow: 0 0.25rem 0.7rem rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
    /* opcionális: ha szeretnél fix méretű képkártyát */
    height: 260px; /* Ezt állíthatod 220 / 240 / 300 / 350-re is */
    overflow: hidden;
}

    .image-card img[b-0wshu7a5h2] {
        width: 100%;
        height: 100%; /* kitölti fix magasságot */
        object-fit: cover; /* szépen vágja, nem torzul */
        border-radius: 1rem;
    }
/* /Pages/VipProgram.razor.rz.scp.css */
/* Hero */
.vip-hero[b-6nkebkm8sf] {
    background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    padding: 2rem;
    border-radius: 1.2rem;
    color: #fff;
    text-align: center;
}

.vip-title[b-6nkebkm8sf] {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.vip-subtitle[b-6nkebkm8sf] {
    margin-top: 0.4rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* vipi kártyák */
.vip-card[b-6nkebkm8sf] {
    background: rgba(128, 0, 128, 0.05); /* halvány lila */
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 3.5rem;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    overflow: hidden;
    /* lilás finom háttér */
    background-image: radial-gradient(rgba(128,0,128,0.06) 1px, transparent 1px), radial-gradient(rgba(128,0,128,0.04) 1px, transparent 1px);
    background-size: 12px 12px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

    /* felső lila csík */
    .vip-card[b-6nkebkm8sf]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #800080, #acb058, #9e099e);
    }

    /* ikon pozíció */
    .vip-card .icon[b-6nkebkm8sf] {
        position: absolute;
        top: 1.4rem;
        left: 1.2rem;
        font-size: 1.6rem;
        color: #9e099e;
    }

    /* cím */
    .vip-card h3[b-6nkebkm8sf] {
        margin-bottom: 0.5rem;
        color: #800080;
        font-weight: 600;
    }

    /* linkek */
    .vip-card a[b-6nkebkm8sf] {
        color: #800080;
        font-weight: 600;
        text-decoration: none;
    }

        .vip-card a:hover[b-6nkebkm8sf] {
            text-decoration: underline;
        }

    /* Hover effekt */
    .vip-card:hover[b-6nkebkm8sf] {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transition: 0.25s ease;
    }

/* Fade-in animáció */
.fade-in[b-6nkebkm8sf] {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp-b-6nkebkm8sf 0.6s ease forwards;
}

@keyframes fadeInUp-b-6nkebkm8sf {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
