/* _content/UKHPCREWORK/Components/Elements/SearchableDropdown.razor.rz.scp.css */
.sd-root[b-r7h8qs0kga] {
    position: relative;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.sd-input[b-r7h8qs0kga] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.sd-list[b-r7h8qs0kga] {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 10000;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.sd-item[b-r7h8qs0kga] {
    padding: 8px 10px;
    cursor: pointer;
    color: black;
}

.sd-item:hover[b-r7h8qs0kga],
.sd-item.highlight[b-r7h8qs0kga] {
    background: #f0f0f0;
}

.sd-empty[b-r7h8qs0kga] {
    padding: 8px 10px;
    color: #666;
}
/* _content/UKHPCREWORK/Components/Layout/LanguageSwitcher.razor.rz.scp.css */
.lang-switcher[b-7k9tpemxpa] {
    border: 2px solid #ffffff;
    border-radius: 12px;
    display: flex;
    gap: 0px;
}

.lang-btn-kk[b-7k9tpemxpa] {
    text-decoration: none;
    background: transparent;
    border: 0 solid transparent;
    color: #ffffff;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lang-btn-en[b-7k9tpemxpa] {
    text-decoration: none;
    background: transparent;
    border: 0 solid transparent;
    color: #ffffff;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lang-btn-ru[b-7k9tpemxpa] {
    text-decoration: none;
    background: transparent;
    border: 0 solid transparent;
    color: #ffffff;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lang-btn-ru:hover[b-7k9tpemxpa] {
    background: #ffffff;
    color: #6f42c1;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.lang-btn-en:hover[b-7k9tpemxpa] {
    background: #ffffff;
    color: #6f42c1;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.lang-btn-kk:hover[b-7k9tpemxpa] {
    background: #ffffff;
    color: #6f42c1;
    border-radius: 0;
}

.lang-btn-active-kk[b-7k9tpemxpa] {
    text-decoration: none;
    background: #ffffff;
    border: 0 solid transparent;
    color: #6f42c1;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lang-btn-active-en[b-7k9tpemxpa] {
    text-decoration: none;
    background: #ffffff;
    border: 0 solid transparent;
    color: #6f42c1;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lang-btn-active-ru[b-7k9tpemxpa] {
    text-decoration: none;
    background: #ffffff;
    border: 0 solid transparent;
    color: #6f42c1;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

/* _content/UKHPCREWORK/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0uo21p1rxq] {
    display: flex;
    flex-direction: column;
}

body[b-0uo21p1rxq] {
    margin: 0;
}

main[b-0uo21p1rxq] {
    flex: 1;
}

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

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

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

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

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

.footer[b-0uo21p1rxq] {
    position: fixed; 
    bottom: 0;      
    left: 0;
    width: 100%;   
    height: 50px;
    padding: 1rem 0;
    background-color: #6f42c1; 
    color: #fff;
    text-align: center;
}

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

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

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

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

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

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

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

#blazor-error-ui[b-0uo21p1rxq] {
    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-0uo21p1rxq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/UKHPCREWORK/Components/Layout/SideBar.razor.rz.scp.css */
.profile-page-container[b-h3lg25i2gr] {
    height: 100%;
}

.profile-page[b-h3lg25i2gr] {
    height: 100vh;
    display: grid;
    grid-template-columns: 20vw 1fr;
}
.content-side[b-h3lg25i2gr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #d9d9d9;
    overflow-y: auto;
}

@media (max-width: 1240px) {
    .profile-page[b-h3lg25i2gr] {
        display: flex;
        flex-direction: column;
    }

    .left-side[b-h3lg25i2gr] {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: #6f42c1;
        transform: translateX(-260px);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .left-side.open[b-h3lg25i2gr] {
        transform: translateX(0);
        opacity: 1;
    }

    .burger[b-h3lg25i2gr] {
        display: block;
    }

    .content-side[b-h3lg25i2gr] {
        margin-left: 0;
        padding-top: 3rem; 
    }
    
    .links[b-h3lg25i2gr] {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .icon-link[b-h3lg25i2gr] {
        text-align: left;
        padding: 0.5rem 1rem;
    }
}





/* _content/UKHPCREWORK/Components/Layout/SideBarMenu.razor.rz.scp.css */
.left-side[b-yctlh05dbe] {
    width: 100%;
    background: #6f42c1;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.profile-logo[b-yctlh05dbe] {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.links[b-yctlh05dbe] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.links i[b-yctlh05dbe] {
    margin-right: 0.3rem;
}

.logo[b-yctlh05dbe] {
    outline: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.burger[b-yctlh05dbe] {
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2000;
    width: 42px;
    height: 42px;
    display: none;
    justify-content: center;
    align-items: center;
    background: #6f42c1;     
    color: #fff;
    font-size: 1.4rem;
    border: none;
    border-radius: 10px;   
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
    padding-top: 0.4rem;
}

.burger:hover[b-yctlh05dbe] {
    background: #5a33a5;
    transform: scale(1.05);
}

@media (max-width: 1240px) {
    .left-side[b-yctlh05dbe] {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: #6f42c1;
        transform: translateX(-260px);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .left-side.open[b-yctlh05dbe] {
        transform: translateX(0);
        opacity: 1;
    }

    .burger[b-yctlh05dbe] {
        display: block;
    }

    .links[b-yctlh05dbe] {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .icon-link[b-yctlh05dbe] {
        text-align: left;
        padding: 0.5rem 1rem;
    }
    
    .profile-logo[b-yctlh05dbe] {
        margin-top: 4rem;
    }
    
    .profile-logo img[b-yctlh05dbe] {
        max-width: 210px;
        max-height: 70px;
    }
}

/* _content/UKHPCREWORK/Components/Layout/TopBar.razor.rz.scp.css */
/*Desktop style bar*/
.topbar[b-zxbn3r3rbj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    background: #6f42c1;
    color: #fff;
    max-width: 90%;
    margin: 1rem auto;
    position: sticky;
    top: 10px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: fadeSlideIn 0.6s ease forwards;
}

.left[b-zxbn3r3rbj] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.right[b-zxbn3r3rbj] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand[b-zxbn3r3rbj] {
    margin-top: 0.3rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
}

/*Hidden burger button*/
.burger[b-zxbn3r3rbj] {
    display: none;
    flex-direction: column;
    width: 26px;
    height: 20px;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span[b-zxbn3r3rbj] {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 4px;
}

/*Mobile style bar*/
@media (max-width: 1334px) {

    .topbar[b-zxbn3r3rbj] {
        padding: 0.8rem 1rem;
    }

    .burger[b-zxbn3r3rbj] {
        display: flex;
    }

    .right[b-zxbn3r3rbj] {
        position: absolute;
        top: 70px;
        right: 10px;
        left: 10px;
        background: #6f42c1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .right.open[b-zxbn3r3rbj] {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links[b-zxbn3r3rbj], .btn[b-zxbn3r3rbj] {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.6rem 0;
        margin: 0;
    }

    .left .brand[b-zxbn3r3rbj] {
        font-size: 1rem;
    }

    .left img[b-zxbn3r3rbj] {
        height: 40px;
        width: 40px;
    }
}
