/* /Components/LoadAnimation.razor.rz.scp.css */
.loading-anim-container[b-cgjfx2fbxk] {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.loading-anim-dot[b-cgjfx2fbxk] {
    --dot-index: initial;
    --animation-duration: initial;
    /*--delay-between: initial;*/
    --color1: #5764EE;
    --color2: #00DF06;
    
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background-color: var(--color1);
    animation: loading-scaling-b-cgjfx2fbxk var(--animation-duration) ease-in-out infinite;
    /*animation-delay: calc(var(--dot-index) * var(--delay-between));*/
}

@keyframes loading-scaling-b-cgjfx2fbxk {
    0%, 100%{
        transform: scale(0.2);
        background-color: var(--color2);
    }
    40%{
        transform: scale(1);
        background-color: var(--color1);
    }
    50%{
        transform: scale(1);
        background-color: var(--color1);
    }
}
/* /Components/TableLoader.razor.rz.scp.css */
.radzen-table-loader[b-uq2piuxu89] {
    width: 100%;
    animation: fadeIn-b-uq2piuxu89 0.3s ease-in;
}

.skeleton-table[b-uq2piuxu89] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.skeleton-header[b-uq2piuxu89] {
    display: grid;
    grid-template-columns: repeat(var(--column-count, 6), 1fr);
    background-color: #f5f5f5;
    border-bottom: 2px solid #e0e0e0;
    padding: 12px 8px;
    gap: 8px;
}

.skeleton-header-cell[b-uq2piuxu89] {
    padding: 4px 8px;
}

.skeleton-row[b-uq2piuxu89] {
    display: grid;
    grid-template-columns: repeat(var(--column-count, 6), 1fr);
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 8px;
    gap: 8px;
    transition: background-color 0.2s;
}

    .skeleton-row:hover[b-uq2piuxu89] {
        background-color: #fafafa;
    }

.skeleton-cell[b-uq2piuxu89] {
    padding: 4px 8px;
}

.placeholder[b-uq2piuxu89] {
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: pulse-b-uq2piuxu89 1.5s ease-in-out infinite;
}

@keyframes pulse-b-uq2piuxu89 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeIn-b-uq2piuxu89 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

[b-uq2piuxu89] .rz-progressbar-circular {
    margin: 0 auto;
}
/* /Layout/MainLayout - Copy.razor.rz.scp.css */
.page[b-9ylzw074ym] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-9ylzw074ym] {
    flex: 1;
}

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

[b-9ylzw074ym] .rz-sidebar-toggle {
    color: #2D3142;
}

    [b-9ylzw074ym] .rz-sidebar-toggle:hover {
        background-color: #5764ee;
    }

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

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

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

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


@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-9ylzw074ym] {
        display: none;
    }

    .top-row.auth[b-9ylzw074ym] {
        justify-content: space-between;
    }

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

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

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

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

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

    .top-row[b-9ylzw074ym], article[b-9ylzw074ym] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-9lfxkkbm10] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-9lfxkkbm10] {
    flex: 1;
}

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

[b-9lfxkkbm10] .rz-sidebar-toggle {
    color: #2D3142;
}

    [b-9lfxkkbm10] .rz-sidebar-toggle:hover {
        background-color: #5764ee;
    }

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

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

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

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


@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-9lfxkkbm10] {
        display: none;
    }

    .top-row.auth[b-9lfxkkbm10] {
        justify-content: space-between;
    }

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

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

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

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

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

    .top-row[b-9lfxkkbm10], article[b-9lfxkkbm10] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Accounts/Login.razor.rz.scp.css */
body[b-8i5ssuf496], html[b-8i5ssuf496] {
    height: 100%;
    margin: 1%;
}

.h-screen[b-8i5ssuf496] {
    height: 100%;
    margin-top: 8%;
    margin-left: 20%;
    margin-right: 20%;
}

.center-element[b-8i5ssuf496] {
    margin-top: 20%;
    text-align: right;
}

.box-special[b-8i5ssuf496] {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
}

.box-center-log[b-8i5ssuf496] {
    text-align: center;
}
/* /Pages/Analysis/AnalysisPage.razor.rz.scp.css */
.analysis-page-container[b-61u7xtfvpo] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    width: 100%;
    padding: 0;
}

/* Apply full-height and no-scroll only to this page */
:host::ng-deep .rz-p-4[b-61u7xtfvpo] {
    overflow: hidden;
}

.analysis-page-header[b-61u7xtfvpo] {
    flex-shrink: 0;
    padding: 0 1rem;
}

.analysis-page-content[b-61u7xtfvpo] {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* /Pages/Analysis/Components/AnalysisAIMenu.razor.rz.scp.css */
.ai-menu-wrapper[b-9x5zbaayv2] {
    margin-left: 12px;
    position: relative;
}

.ai-menu-chevron[b-9x5zbaayv2] {
    display: inline-block;
    width: 1rem;
    transition: transform 0.125s;
}

.ai-unseen-badge[b-9x5zbaayv2] {
    background: red;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

.ai-menu-dropdown[b-9x5zbaayv2] {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 420px;
    max-width: 460px;
    z-index: 100;
    margin-top: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(25, 33, 54, 0.18);
    border: 1px solid #eceff5;
}

.ai-menu-content[b-9x5zbaayv2] {
    padding: 10px;
    color: #67728a;
}

.ai-toolbar[b-9x5zbaayv2] {
    display: block;
    margin-bottom: 10px;
    margin-top: 8px;
}

[b-9x5zbaayv2] .ai-mode-tabs .rz-tabview-nav {
    display: flex;
    width: 100%;
}

[b-9x5zbaayv2] .ai-mode-tabs .rz-tabview-nav li {
    flex: 1 1 0;
}

[b-9x5zbaayv2] .ai-mode-tabs .rz-tabview-nav li a {
    justify-content: center;
}

.ai-reports-list[b-9x5zbaayv2] {
    overflow-y: auto;
    max-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 2px;
}

.ai-empty-state[b-9x5zbaayv2] {
    text-align: center;
    color: #8a91a2;
    padding: 18px 10px;
    border: 1px dashed #d8deeb;
    border-radius: 10px;
    background: #fafbfe;
}

.ai-report-item[b-9x5zbaayv2] {
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #e9edf6;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ai-report-item:hover[b-9x5zbaayv2] {
    border-color: #ccd6eb;
    box-shadow: 0 5px 12px rgba(32, 52, 105, 0.08);
    transform: translateY(-1px);
}

.ai-report-item-unseen[b-9x5zbaayv2] {
    border-color: #cfdcff;
    background: linear-gradient(180deg, #f8faff 0%, #f1f5ff 100%);
}

.ai-report-header[b-9x5zbaayv2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ai-report-type[b-9x5zbaayv2] {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5c6d95;
    background: #edf2ff;
    border-radius: 999px;
    padding: 3px 8px;
}

.ai-report-status[b-9x5zbaayv2] {
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 3px 8px;
}

.ai-report-status-created[b-9x5zbaayv2] {
    background: #eceef3;
    color: #5f6778;
}

.ai-report-status-running[b-9x5zbaayv2] {
    background: #e9f4ff;
    color: #2066b5;
}

.ai-report-status-completed[b-9x5zbaayv2] {
    background: #e7f7ed;
    color: #1f7b3d;
}

.ai-report-status-error[b-9x5zbaayv2] {
    background: #feecef;
    color: #b42337;
}

.ai-report-status-cancelled[b-9x5zbaayv2] {
    background: #fff3de;
    color: #8d6318;
}

.ai-report-title[b-9x5zbaayv2] {
    font-size: 14px;
    color: #222735;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
}

.ai-report-meta[b-9x5zbaayv2] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #76809a;
}
/* /Pages/Rankings/RankingsPage.razor.rz.scp.css */
/* in app.css */
/* /Pages/Training/CallPage/CallPage.razor.rz.scp.css */
.center-container-call[b-qzfdbgwkd0]{
    min-height: 40dvh;
    margin-top: 6%;
}

.call-top-panel[b-qzfdbgwkd0]{
    display: flex;
    gap: 1rem;
    margin: 30px;
}
.call-status-text.before[b-qzfdbgwkd0] {
    color: #FF2A48;
}
.call-status-text.in-progress[b-qzfdbgwkd0] {
    color: #AA0047;
}

.main-call-button[b-qzfdbgwkd0]{
    width: calc(1155px / 4);
    height: calc(198px / 4);
}
.main-call-button.start-call-button[b-qzfdbgwkd0]{
    background-image: url('images/start_button.png');
}
.main-call-button.start-call-button:active[b-qzfdbgwkd0] {
    background-image: url('images/start_button_pressed.png');
}
.main-call-button.start-call-button.disabled[b-qzfdbgwkd0]{
    background-image: url('images/start_button_disabled.png');
}
.main-call-button.start-call-button.disabled:active[b-qzfdbgwkd0] {
    background-image: url('images/start_button_disabled_pressed.png');
}
.main-call-button.pause-call-button[b-qzfdbgwkd0]{
    background-image: url('images/pause_button_polish.png');
}
.main-call-button.pause-call-button:active[b-qzfdbgwkd0] {
    background-image: url('images/pause_button_pressed_polish.png');
}
.main-call-button.resume-call-button[b-qzfdbgwkd0]{
    background-image: url('images/resume_button.png');
}
.main-call-button.resume-call-button:active[b-qzfdbgwkd0] {
    background-image: url('images/resume_button_pressed.png');
}
.main-call-button.stop-call-button[b-qzfdbgwkd0]{
    background-image: url('images/end_call_button.png');
}
.main-call-button.stop-call-button:active[b-qzfdbgwkd0] {
    background-image: url('images/end_call_button_pressed.png');
}
.main-call-button.send-results-call-button[b-qzfdbgwkd0] {
    background-image: url('images/save_edit_button.png');
}
.main-call-button.send-results-call-button:active[b-qzfdbgwkd0] {
    background-image: url('images/save_edit_button_pressed.png');
}


.stop-call-button-small[b-qzfdbgwkd0]{
    width: calc(179px / 4);
    height: calc(191px / 4);
}
.stop-call-button-small.stop-call-button-small-disabled[b-qzfdbgwkd0] {
    background-image: url('images/xs_1.png');
    cursor: default;
}
.stop-call-button-small.stop-call-button-small-enabled[b-qzfdbgwkd0] {
    background-image: url('images/disconnect_button.png');
}
.stop-call-button-small.stop-call-button-small-enabled:active[b-qzfdbgwkd0] {
    background-image: url('images/disconnect_button_pressed.png');
}

.call-header[b-qzfdbgwkd0]{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    height: 80px;
}

.call-header-text p[b-qzfdbgwkd0] {
    margin: 0;
}
.call-header-text[b-qzfdbgwkd0]{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    gap: 1rem;
    transform: translateX(-25px); /* center visually */
}
.call-plan-name[b-qzfdbgwkd0], .client-case-name[b-qzfdbgwkd0]{
    font-family: 'GreycliffCF-Regular', 'serif';
    font-size: 12pt;
    position: static;
}
.client-case-info-button-parent[b-qzfdbgwkd0] {
    width: calc(54px / 1.5);
    height: calc(54px / 1.5);

    position: absolute;
    top: calc(54px / 2);
    right: calc(54px / 2);
}
.client-case-info-button[b-qzfdbgwkd0]{
    background-image: url('images/info.png');
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.copy-orderid-button-parent[b-qzfdbgwkd0] {
    width: calc(54px / 1.5);
    height: calc(54px / 1.5);

    position: absolute;
    top: calc(54px / 2 + 54px + 12px);
    right: calc(54px / 2);
}
.copy-orderid-button[b-qzfdbgwkd0]{
    background-image: url('images/copy.png');
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.copy-orderid-tooltip[b-qzfdbgwkd0]{
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    position: absolute;
    z-index: 1001;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.copy-orderid-button-parent:hover .copy-orderid-tooltip[b-qzfdbgwkd0] {
    visibility: visible;
}


.assistant-button[b-qzfdbgwkd0]{
    background-image: url('images/assistant_button.png');

    width: calc(148px / 2);
    height: calc(156px / 2);

    position: absolute;
    bottom: calc(148px / 2);
    right: calc(156px / 2);
    z-index: 1000;
}
.assistant-button:active[b-qzfdbgwkd0] {
    background-image: url('images/assistant_button_pressed.png');
}
.assistant-button.awaiting[b-qzfdbgwkd0] {
    background-image: url('images/assistant_button_pressed.png');
    /*background-image: url('images/assistant_button_await.png');*/
}
.assistant-field[b-qzfdbgwkd0], .client-case-info-field[b-qzfdbgwkd0]{
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px 0 rgba(0,0,0, 0.3);

    width: 30%;
    max-height: 30%;
    overflow: auto;

    position: absolute;
    transform: translateX(-50%);
    z-index: 1000;

    cursor: pointer;
}
.assistant-field-content[b-qzfdbgwkd0], .client-case-info-field-content[b-qzfdbgwkd0]{
    font-family: 'Rubik', serif;
    /*font-size: 12pt;*/
    padding: 20px;
}
.assistant-field[b-qzfdbgwkd0]{
    bottom: 5%;
    left: 50%;
}
.client-case-info-field[b-qzfdbgwkd0]{
    width: 25%;
    max-height: 25%;
    right: 5%;
    top: 5%;
    transform: none !important;
    text-align: right;
}

.hide-assistant-bottom[b-qzfdbgwkd0]{
    background: none;
    max-width: 100%;
    position: absolute;
    bottom: -3%;
    z-index: 1000;
}
.hide-client-info-top[b-qzfdbgwkd0]{
    background: none;
    max-width: 100%;
    position: absolute;
    top: -3%;
    z-index: 1000;
}


.blocked-dialog[b-qzfdbgwkd0] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 1rem;
    border-radius: 1rem;
    cursor: pointer;
}
/* /Pages/Training/CallPage/Components/StepCardElement.razor.rz.scp.css */
.steps-item[b-91sh1g2sk6]{
    /*width: 90%;*/
    margin: 5px 0;

    position: relative;
    display: inline-block;
    padding: 7px;
    --accent-color: #cccccc;

    border: 3px solid var(--accent-color);
    box-shadow: 0 3px 0 var(--accent-color);
    border-radius: 15px;
}

.steps-item-content[b-91sh1g2sk6] {
    /*background: white;*/
    color: black;

    position: relative;
    z-index: 1;

    margin: 0 0 3px;
}
/* /Pages/Training/CallPage/Components/StepsColumn.razor.rz.scp.css */
.steps-column-parent[b-aqvlrupcbf] {
    width: 200px;
    display: flex;
    flex-direction: column;
    border: 0;
    padding: 0.5rem;
}
.steps-column-list[b-aqvlrupcbf] {
    /*max-height: 500px;*/
    max-height: 1000px;
    overflow-y: auto;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* /Pages/Training/CallPage/Components/StepsGrid.razor.rz.scp.css */
.steps-grid[b-75mkq09cb2] {
    display: flex;
    gap: 1rem;
    /*width: 600px;*/
    max-width: 1200px;
    overflow-x: auto;
    border: 0;
    padding: 1rem;
    max-height: 60dvh;
}
/* /Pages/Training/Components/BackButton.razor.rz.scp.css */
.back-button-img[b-xfighggxyy] {
    background-image: url('images/back_button.png');
    
    width: calc(652px / 4);
    height: calc(191px / 4);
}
.back-button-img:active[b-xfighggxyy] {
    background-image: url('images/back_button_pressed.png');
}
/* /Pages/Training/Components/TimePeriodSelectorList.razor.rz.scp.css */
.time-period-selector-list[b-r5wwx2tebd]{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-content: start;
}
.selected-time-period-word[b-r5wwx2tebd] {
    display: flex;
    align-items: center;
    color: #CCCCCC;
}
/* /Pages/Training/Components/ToggleButton.razor.rz.scp.css */
.toggle-button[b-lefcj8flu4]{
    border-radius: 50%;
    padding: 5px 11.22px; /* taller than wider to counteract the symbol inside */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 24px;
}
/* /Pages/Training/PostCallFeedback/Components/PostCallFeedbackCategoriesItem.razor.rz.scp.css */
.post-call-feedback-categories-list-item[b-vcwnwhx27h]{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    color: #999;
    cursor: pointer;
    font-size: 10pt;
}
.post-call-feedback-categories-list-item.selected[b-vcwnwhx27h]{
    font-size: 14pt;
    color: black;
}
.post-call-feedback-categories-list-item-radioselect[b-vcwnwhx27h]{
    background-image: url('images/radio-circle_empty_centered.png');
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;

    width: 2rem;
    aspect-ratio: 1/1;
}
.post-call-feedback-categories-list-item-radioselect.selected[b-vcwnwhx27h]{
    background-image: url('images/radio-circle_checked.png');
}
.post-call-feedback-categories-list-item-content.selected[b-vcwnwhx27h]{
    margin-left: 10px;
}
.post-call-feedback-categories-list-item-stars[b-vcwnwhx27h]{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.post-call-feedback-star-small[b-vcwnwhx27h]{
    background-image: url('images/star_small.png');
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    width: 1rem;
    aspect-ratio: 1/1;
}
.post-call-feedback-star-small.empty[b-vcwnwhx27h]{
    background-image: url('images/star_small_empty.png');
}
/* /Pages/Training/PostCallFeedback/PostCallFeedback.razor.rz.scp.css */
.post-call-feedback-title[b-4xi6mmrswp]{
    color: #999;
    margin-bottom: 2%;
}
.post-call-feedback-stars-field[b-4xi6mmrswp] {
    background-image: url('images/text_field.png');
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    max-width: 40%;
}
.post-call-feedback-categories-list[b-4xi6mmrswp], .post-call-feedback-text-field[b-4xi6mmrswp]{
    border: 2px solid #b3b3b3;
    border-radius: 10px;
    box-shadow: 5px 5px 0 #b3b3b3;
    background-color: white;

    max-width: 40%;
}
.post-call-feedback-categories-list[b-4xi6mmrswp]{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 2rem;
    margin-bottom: 3rem;
    min-width: 25%;
}

.post-call-feedback-stars-field[b-4xi6mmrswp] {
    background-image: url('images/popup_field.png');
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    width: 40%;
    padding: 0.5rem 2rem;
}
.post-call-feedback-star-big[b-4xi6mmrswp]{
    background-image: url('images/star.png');
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    width: 4rem;
    aspect-ratio: 1 / 1;
}
.post-call-feedback-star-big.empty[b-4xi6mmrswp]{
    background-image: url('images/star_empty_centered.png');
}

.post-call-feedback-text-field[b-4xi6mmrswp]{
    font-size: 12pt;
    text-align: justify;
    max-width: 30%;
    padding: 2rem 2rem;
}
/* /Pages/UsersTeam/Team/TeamsComponent.razor.rz.scp.css */
.teams-page-container[b-pvcscf4z4o] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    width: 100%;
    padding: 0;
}

/* Apply full-height and no-scroll only to this page */
:host::ng-deep .rz-p-4[b-pvcscf4z4o] {
    overflow: hidden;
}

.teams-page-header[b-pvcscf4z4o] {
    flex-shrink: 0;
    padding: 0 1rem;
}

.teams-page-content[b-pvcscf4z4o] {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* /Pages/UsersTeam/Users/UsersComponent.razor.rz.scp.css */
.users-page-container[b-jouaqpozqu] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    width: 100%;
    padding: 0;
}

/* Apply full-height and no-scroll only to this page */
:host::ng-deep .rz-p-4[b-jouaqpozqu] {
    overflow: hidden;
}

.users-page-header[b-jouaqpozqu] {
    flex-shrink: 0;
    padding: 0 1rem;
}

.users-page-content[b-jouaqpozqu] {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
