/* _content/Kalorindo/Components/Card/BarChart.razor.rz.scp.css */
.bar-chart-card[b-o5jjhxxncg] {
    display: flex;
    flex-direction: row;
    width: 48%;
    height: fit-content;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
    margin: 10px;
    padding: 10px;
    background-color: white;
}
/* _content/Kalorindo/Components/Card/DateTimeCard.razor.rz.scp.css */
.date-time-card-host[b-zmbulunt8g]{
    margin-right:10px;
    /*width:120px;*/
    align-content:center;
}

    .date-time-card-host[b-zmbulunt8g]  .date-time-card {
        width: 100%;
        /*max-width: 320px;*/
        /*margin: 10px;*/
        padding: 5px;
        display: flex;
        flex-direction: row;
        gap:10px;
        /*gap: 8px;*/
        /*background: rgba(255, 255, 255, 0.5);
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);*/
        font-family: "Inter", "Segoe UI", Arial, sans-serif;
    }

.date-time-card__date[b-zmbulunt8g] {
    color: #4b5563;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.date-time-card__time[b-zmbulunt8g] {
    color: dodgerblue;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 480px) {
    .date-time-card-host[b-zmbulunt8g]  .date-time-card {
        max-width: none;
        padding: 16px 18px;
    }

    .date-time-card__time[b-zmbulunt8g] {
        font-size: 30px;
    }
}
/* _content/Kalorindo/Components/Card/DonutChart.razor.rz.scp.css */
.donut-chart-card[b-27k3ba00qy] {
    display: flex;
    flex-direction: row;
    width: 48%;
    height: fit-content;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
    margin: 10px;
    padding: 10px;
    background-color:white;
}
.chart-content[b-27k3ba00qy] {
    display: flex;
    flex-direction: column;
    margin:10px;
    gap:10px;
}
    .chart-content .title[b-27k3ba00qy] {
        font-size: 16px;
        font-weight: bold;
    }
    .chart-content .label[b-27k3ba00qy] {
        display: grid;
        grid-template-columns: 100px 10px auto;
        row-gap: 10px;
    }
        .chart-content .label .highlight[b-27k3ba00qy] {
            font-weight: bold;
        }
/* _content/Kalorindo/Components/Card/HistorycalCard.razor.rz.scp.css */
.historycal-card[b-m98k9nmiqr] {
    width: 100%;
    max-width: 400px;
    height: 80%;
    margin: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.historycal-card__header[b-m98k9nmiqr] {
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.historycal-card__title[b-m98k9nmiqr] {
    margin: 0;
    color: red;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.historycal-card__list[b-m98k9nmiqr] {
    display: flex;
    flex-direction: column;
    overflow-y:auto;
    flex:1;
}

.historycal-card__item[b-m98k9nmiqr] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 20px;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.historycal-card__item:last-child[b-m98k9nmiqr] {
    border-bottom: 0;
}

.historycal-card__item:hover[b-m98k9nmiqr] {
    background: #f7fbf9;
}

.historycal-card__item:focus-visible[b-m98k9nmiqr] {
    outline: 3px solid rgba(19, 148, 71, 0.25);
    outline-offset: -3px;
}

.historycal-card__item-title[b-m98k9nmiqr] {
    width: 100%;
    color: cornflowerblue;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.historycal-card__item-content[b-m98k9nmiqr] {
    width: 100%;
    color: orangered;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.historycal-card__empty[b-m98k9nmiqr] {
    padding: 18px 20px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 420px) {
    .historycal-card[b-m98k9nmiqr] {
        max-width: none;
    }

    .historycal-card__header[b-m98k9nmiqr],
    .historycal-card__item[b-m98k9nmiqr],
    .historycal-card__empty[b-m98k9nmiqr] {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/* _content/Kalorindo/Components/Card/ProgressBar.razor.rz.scp.css */
.progress-bar-card[b-ygba153l02] {
    display: flex;
    flex-direction: column;
    min-width: 48%;
    height: fit-content;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.5);
    margin: 10px;
}
.progress-bar-header[b-ygba153l02] {
    padding: 10px;
    /*background-color: cornflowerblue;*/
    color:azure;
    font-size:24px;
    display:flex;
    justify-content:center;
}
.progress-bar-content[b-ygba153l02]{
    display:flex;
    flex-direction:column;
    width:100%;
    padding:15px;
    gap:15px;
}
.label-info[b-ygba153l02] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    display: flex;
    gap: 15px;
    flex-wrap:wrap;
}

    .label-info span[b-ygba153l02] {
        display: flex;
        align-items: center;
        gap:2px;
    }

.progress-bar-container[b-ygba153l02] {
    position: relative;
    width: 88%;
    min-height: 65px;
    flex: 1;
}
.progress-bar-button-container[b-ygba153l02] {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-direction:row-reverse;
}

.label-info-absolute[b-ygba153l02] {
    position: absolute;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.label-start[b-ygba153l02]{
    top:20%;
    left:-1%;
}
.label-finish[b-ygba153l02] {
    top: 20%;
    left: 98%;
}
.label-value[b-ygba153l02]{
    position:absolute;
    /*left:56%;*/
    bottom:0;
    z-index:1;
    gap:0;
    margin-left:1px;
}

@media (max-width: 640.98px) {
    .progress-bar-container[b-ygba153l02] {
        width: 80%;
    }
}

/* _content/Kalorindo/Components/Card/ProjectActionCard.razor.rz.scp.css */
.project-action-card[b-peoqqxcu0l] {
    width: 100%;
    /*height: 70%;*/
    max-width: 420px;
    margin: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.project-action-card__header[b-peoqqxcu0l] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-action-card__title[b-peoqqxcu0l] {
    margin: 0;
    color: #7c3aed;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.project-action-card__actions[b-peoqqxcu0l] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    color: #ffffff;
    border-radius: 6px;
    box-shadow: none;
    font-weight: 700;
    text-transform: none;
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--project {
    background: #139447;
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--project:hover {
    background: #0f7f3b;
    box-shadow: 0 2px 6px rgba(15, 127, 59, 0.24);
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--tender {
    background: #1f78b4;
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--tender:hover {
    background: #185f91;
    box-shadow: 0 2px 6px rgba(31, 120, 180, 0.24);
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--bom {
    background: #7c3aed;
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--bom:hover {
    background: #6425d0;
    box-shadow: 0 2px 6px rgba(124, 58, 237, 0.24);
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--document {
    background: #d97706;
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button--document:hover {
    background: #b85f04;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.24);
}

.project-action-card[b-peoqqxcu0l]  .project-action-card__button .mud-button-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .project-action-card[b-peoqqxcu0l] {
        max-width: none;
        padding: 18px;
    }
}
/* _content/Kalorindo/Components/Card/ProjectInfo.razor.rz.scp.css */

/* _content/Kalorindo/Components/Card/ProjectStatusDonutCard.razor.rz.scp.css */
.project-status-card[b-dkkiuet7uw] {
    width: 100%;
    /*height:70%;*/
    max-width: 860px;
    margin: 10px;
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.project-status-card__title[b-dkkiuet7uw] {
    margin: 0;
    color: yellowgreen;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.project-status-card__content[b-dkkiuet7uw] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-status-card__chart[b-dkkiuet7uw] {
    width: 220px;
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-status-card__chart[b-dkkiuet7uw]  .mud-chart {
    max-width: 100%;
}

.project-status-card__chart[b-dkkiuet7uw]  .project-status-card__total-value {
    fill: #17233a;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 46px;
    font-weight: 800;
}

.project-status-card__chart[b-dkkiuet7uw]  .project-status-card__total-label {
    fill: #4b5563;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color:blue;
}

.project-status-card__legend[b-dkkiuet7uw] {
    min-width: 220px;
    max-width: 330px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-status-card__legend-row[b-dkkiuet7uw] {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #17233a;
    font-size: 15px;
    line-height: 1;
}

.project-status-card__dot[b-dkkiuet7uw] {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 999px;
}

.project-status-card__label[b-dkkiuet7uw] {
    flex: 1;
    min-width: 0;
    font-weight: 500;
}

.project-status-card__value[b-dkkiuet7uw] {
    min-width: 86px;
    color: #17233a;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

.nominal-legend[b-dkkiuet7uw]{
    display:flex;
    gap:20px;
    font-size:16px;
    font-weight:bold;
}

@media (max-width: 720px) {
    .project-status-card[b-dkkiuet7uw] {
        max-width: none;
        padding: 22px 18px;
    }

    .project-status-card__content[b-dkkiuet7uw] {
        align-items: stretch;
        gap: 24px;
        flex-direction: column;
    }

    .project-status-card__chart[b-dkkiuet7uw] {
        width: 100%;
        flex-basis: auto;
    }

    .project-status-card__legend[b-dkkiuet7uw] {
        width: 100%;
        max-width: none;
        min-width: 0;
    }
}
/* _content/Kalorindo/Components/Card/SummaryActionCard.razor.rz.scp.css */
.summary-action-card[b-b3rxwddv9c] {
    width: 100%;
    max-width: 400px;
    margin: 10px;
    /*min-height: 228px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.summary-action-card__body[b-b3rxwddv9c] {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    padding:20px 20px 20px 20px;
}

.summary-action-card__icon-box[b-b3rxwddv9c] {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--summary-card-icon-background, #eaf8f0);
    border-radius: 14px;
}

.summary-action-card[b-b3rxwddv9c]  .summary-action-card__icon {
    width: 64px;
    height: 64px;
    font-size: 64px;
    color: var(--summary-card-icon-color, #16b95f);
}

.summary-action-card__content[b-b3rxwddv9c] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.summary-action-card__title[b-b3rxwddv9c] {
    color: var(--summary-card-accent-color, #139447);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.summary-action-card__value[b-b3rxwddv9c] {
    margin-top: 16px;
    color: #101827;
    font-size: 40px;
    font-weight: 700;
    line-height: 0.95;
}

.summary-action-card__subtitle[b-b3rxwddv9c] {
    margin-top: 16px;
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

.summary-action-card__footer[b-b3rxwddv9c] {
    border-top: 1px solid #e5e7eb;
}

.summary-action-card__action[b-b3rxwddv9c] {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px 0 24px;
    border: 0;
    background: transparent;
    color: var(--summary-card-accent-color, #139447);
    /*font: inherit;*/
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.summary-action-card__action:hover[b-b3rxwddv9c] {
    background: #f7fbf9;
}

.summary-action-card[b-b3rxwddv9c]  .summary-action-card__action-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    font-size: 22px;
    color: var(--summary-card-action-icon-color, #139447);
}

@media (max-width: 420px) {
    .summary-action-card[b-b3rxwddv9c] {
        max-width: none;
        min-height: 210px;
    }

    .summary-action-card__body[b-b3rxwddv9c] {
        gap: 18px;
        padding: 28px 20px;
    }

    .summary-action-card__icon-box[b-b3rxwddv9c] {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }

    .summary-action-card[b-b3rxwddv9c]  .summary-action-card__icon {
        width: 54px;
        height: 54px;
        font-size: 54px;
    }

    .summary-action-card__value[b-b3rxwddv9c] {
        font-size: 40px;
    }
}
/* _content/Kalorindo/Components/Card/TenderStatusDonutCard.razor.rz.scp.css */
.project-status-card[b-oqa8ny23w3] {
    width: 100%;
    /*height:70%;*/
    /*max-width: 860px;*/
    margin: 10px;
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.project-status-card__title[b-oqa8ny23w3] {
    margin: 0;
    color: green;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.project-status-card__content[b-oqa8ny23w3] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-status-card__chart[b-oqa8ny23w3] {
    width: 180px;
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-status-card__chart[b-oqa8ny23w3]  .mud-chart {
    max-width: 100%;
}

.project-status-card__chart[b-oqa8ny23w3]  .project-status-card__total-value {
    fill: #17233a;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 46px;
    font-weight: 800;
}

.project-status-card__chart[b-oqa8ny23w3]  .project-status-card__total-label {
    fill: #4b5563;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color:blue;
}

.project-status-card__legend[b-oqa8ny23w3] {
    min-width: 220px;
    /*max-width: 330px;*/
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-status-card__legend-row[b-oqa8ny23w3] {
    display: flex;
    align-items: start;
    gap: 18px;
    color: #17233a;
    font-size: 15px;
    line-height: 1;
}

.project-status-card__legend-row-column[b-oqa8ny23w3] {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.project-status-card__dot[b-oqa8ny23w3] {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 999px;
}

.project-status-card__label[b-oqa8ny23w3] {
    flex: 1;
    min-width: 0;
    font-weight: 500;
}

.project-status-card__value[b-oqa8ny23w3] {
    min-width: 86px;
    color: #17233a;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

.nominal-legend[b-oqa8ny23w3]{
    display:flex;
    gap:20px;
    font-size:16px;
    font-weight:bold;
}

@media (max-width: 720px) {
    .project-status-card[b-oqa8ny23w3] {
        max-width: none;
        padding: 22px 18px;
    }

    .project-status-card__content[b-oqa8ny23w3] {
        align-items: stretch;
        gap: 24px;
        flex-direction: column;
    }

    .project-status-card__chart[b-oqa8ny23w3] {
        width: 100%;
        flex-basis: auto;
    }

    .project-status-card__legend[b-oqa8ny23w3] {
        width: 100%;
        max-width: none;
        min-width: 0;
    }
}
/* _content/Kalorindo/Components/Card/UserInfo.razor.rz.scp.css */

/* Center the planet */
.body[b-x3jkyd755q] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    /*background: var(--ipk_Theme);*/
    /*min-height: 100vh;
    background-color: #222229;*/
}

/* Boring button styles */
a.button[b-x3jkyd755q] {
    /* Frame */
    display: flex;
    padding: 7px 15px;
    box-sizing: border-box;
    /* Style */
    border: none;
    /*background: var(--ipk_Theme);*/
    color: white;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
}

    a.button:active[b-x3jkyd755q] {
        filter: brightness(75%);
    }
a img[b-x3jkyd755q] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
    object-fit: cover;
    background: var(--fn_MainBackground)
}
a span[b-x3jkyd755q] {
    font-size: 16px;
    margin: 5px;
    color: #15283c;
    font-weight:bold;
}
/* Dropdown styles */
.dropdown[b-x3jkyd755q] {
    position: relative;
    padding: 0;
    margin:0;
    /*margin-right: 1em;*/
    border: none;
}

    .dropdown summary[b-x3jkyd755q] {
        list-style: none;
        list-style-type: none;
    }

    /*.dropdown > summary::-webkit-details-marker {
        display: none;
    }*/

    .dropdown summary:focus[b-x3jkyd755q] {
        outline: none;
    }

        /*.dropdown summary:focus a.button {
            border: 2px solid white;
        }*/

    .dropdown summary:focus[b-x3jkyd755q] {
        outline: none;
    }

    .dropdown ul[b-x3jkyd755q] {
        position: absolute;
        margin: 10px 0 0 0;
        padding: 10px 0;
        width: 100%;
        min-width:max-content;
        /*left: 50%;
        margin-left: calc((160px / 2) * -1);*/
        box-sizing: border-box;
        z-index: 2;
        background: var(--fn_Gray);
        border-radius: 6px;
        list-style: none;
        box-shadow: -1px 1px 4px -2px rgba(0, 0, 0, 0.5);
        right:0;
    }

        .dropdown ul li[b-x3jkyd755q] {
            padding: 0;
            margin: 0;
        }

            .dropdown ul li a:link[b-x3jkyd755q], .dropdown ul li a:visited[b-x3jkyd755q] {
                display: inline-block;
                padding: 10px 0.8rem;
                width: 100%;
                box-sizing: border-box;
                color: black;
                text-decoration: none;
            }

            .dropdown ul li a:hover[b-x3jkyd755q] {
                background-color: var(--ipk_Theme);
                color: white;
            }

        /* Dropdown triangle */
        .dropdown ul[b-x3jkyd755q]::before {
            content: ' ';
            position: absolute;
            width: 0;
            height: 0;
            top: -10px;
            left: 50%;
            margin-left: -10px;
            border-style: solid;
            border-width: 0 10px 10px 10px;
            border-color: transparent transparent var(--fn_Gray) transparent;
        }


    /* Close the dropdown with outside clicks */
    .dropdown > summary[b-x3jkyd755q]::before {
        display: none;
    }

    .dropdown[open] > summary[b-x3jkyd755q]::before {
        content: ' ';
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
    }
@media (max-width: 640.98px) {
    a span[b-x3jkyd755q] {
        display:none;
    }
}
/* _content/Kalorindo/Components/Card/UserInfoChat.razor.rz.scp.css */
.container-fluid[b-ml0zrnuvno] {
    display: flex;
    gap:5px;
    align-items:center;
}

.user-image-img[b-ml0zrnuvno] {
    border-radius: 100% 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
    background: var(--fn_MainBackground);
}

.user-info[b-ml0zrnuvno] {
    gap: 2px;
    flex: 1;
    padding: 5px;
    align-content: flex-start;
}

    .user-info p[b-ml0zrnuvno] {
        font-size: 12px;
        font-weight: 500;
        color: #1ed085;
        margin: 0;
        padding: 0;
    }

    .user-info h5[b-ml0zrnuvno] {
        margin: 0;
        padding: 0;
        font-weight:normal;
        font-size:16px;
    }

.online-status[b-ml0zrnuvno] {
    display: flex;
    gap: 4px;
    align-items: center;
}

@keyframes blink-b-ml0zrnuvno {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.online-animation[b-ml0zrnuvno] {
    width: 10px;
    height: 10px;
    background: #1ed085;
    border-radius: 100%;
    animation: blink-b-ml0zrnuvno 2s infinite;
}
.offline-animation[b-ml0zrnuvno] {
    width: 10px;
    height: 10px;
    background: gray;
    border-radius: 100%;
}
.user-img-small[b-ml0zrnuvno] {
    width: 40px;
    height: 40px;
    float: left;
}
.user-info-expand[b-ml0zrnuvno] {
    display: flex;
    flex-direction: column;
}
/* _content/Kalorindo/Components/FormField/DynamicForm.razor.rz.scp.css */

.manual-detail-grid[b-833hqq4or4] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mud-palette-lines-default);
    font-size: 0.875rem;
}

    .manual-detail-grid th[b-833hqq4or4],
    .manual-detail-grid td[b-833hqq4or4] {
        border: 1px solid var(--mud-palette-lines-default);
        padding: 6px 16px;
        height: 38px;
        text-align: left;
        vertical-align: middle;
    }

    .manual-detail-grid th[b-833hqq4or4] {
        background-color: var(--mud-palette-background-grey);
        color: var(--mud-palette-text-primary);
        font-weight: 600;
    }

    .manual-detail-grid td:first-child[b-833hqq4or4] {
        width: 240px;
        font-weight: 600;
    }

    .manual-detail-grid tbody tr:hover[b-833hqq4or4] {
        background-color: var(--mud-palette-action-default-hover);
    }

.table-content[b-833hqq4or4] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}
.edit-form[b-833hqq4or4] {
    flex: 1;
    display: flex;
    height:100%;
    min-height: 0;
    overflow: auto;
    flex-direction: column;
}

    .edit-form[b-833hqq4or4]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
/* _content/Kalorindo/Components/FormField/NewDynamicForm.razor.rz.scp.css */

.manual-detail-grid[b-qkgiho586y] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mud-palette-lines-default);
    font-size: 0.875rem;
}

    .manual-detail-grid th[b-qkgiho586y],
    .manual-detail-grid td[b-qkgiho586y] {
        border: 1px solid var(--mud-palette-lines-default);
        padding: 6px 16px;
        height: 38px;
        text-align: left;
        vertical-align: middle;
    }

    .manual-detail-grid th[b-qkgiho586y] {
        background-color: var(--mud-palette-background-grey);
        color: var(--mud-palette-text-primary);
        font-weight: 600;
    }

    .manual-detail-grid td:first-child[b-qkgiho586y] {
        width: 240px;
        font-weight: 600;
    }

    .manual-detail-grid tbody tr:hover[b-qkgiho586y] {
        background-color: var(--mud-palette-action-default-hover);
    }

.table-content[b-qkgiho586y] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.edit-form[b-qkgiho586y] {
    flex: 1;
    display: flex;
    height: 100%;
    min-height: 0;
    overflow: auto;
    flex-direction: column;
}

    .edit-form[b-qkgiho586y]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
/* _content/Kalorindo/Components/Pages/ProjectSchedule.razor.rz.scp.css */
.table-container[b-6xmp9v8giq] {
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.chart-container[b-6xmp9v8giq] {
    overflow-y: auto; /* Scroll horizontal */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.card-container[b-6xmp9v8giq] {
    display: flex;
    width: 100%;
    font-family: 'Comic Sans MS';
    justify-content: center;
    flex-wrap: wrap;
}

.chart-content[b-6xmp9v8giq] {
    display: flex;
    flex-direction: column;
    margin: 10px;
    gap: 10px;
}

    .chart-content .title[b-6xmp9v8giq] {
        font-size: 16px;
        font-weight: bold;
    }

    .chart-content .label[b-6xmp9v8giq] {
        display: grid;
        grid-template-columns: 100px 10px auto;
        row-gap: 10px;
    }

        .chart-content .label .highlight[b-6xmp9v8giq] {
            font-weight: bold;
        }

.page-title .label-title[b-6xmp9v8giq] {
}

.page-title .action-bar[b-6xmp9v8giq] {
    display: flex;
    min-width: 150px;
    align-items: center;
    flex-direction: row-reverse;
    padding-right: 20px;
    margin-left: auto;
}
/* _content/Kalorindo/Engineering/DocumentList/EngDocumentList.razor.rz.scp.css */

[b-w0ldsp6nis] .document-date-picker .mud-input-adornment .mud-icon-button {
    width: 28px;
    height: 28px;
    padding: 4px;
}

[b-w0ldsp6nis] .document-date-picker .mud-input-adornment .mud-icon-root {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

[b-w0ldsp6nis] .project-name-title {
    max-width: min(42vw, 520px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight:bold;
}
/* _content/Kalorindo/Engineering/DocumentList/Evaluation.razor.rz.scp.css */
.chart-container[b-sgor8ygfmt] {
    overflow-y: auto; /* Scroll horizontal */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
/* _content/Kalorindo/Engineering/ToDoList/ToDoList.razor.rz.scp.css */

[b-gkvyskrwgl] .document-date-picker .mud-input-adornment .mud-icon-button {
    width: 28px;
    height: 28px;
    padding: 4px;
}

[b-gkvyskrwgl] .document-date-picker .mud-input-adornment .mud-icon-root {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

[b-gkvyskrwgl] .project-name-title {
    max-width: min(42vw, 520px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}
/* _content/Kalorindo/GeneralPage/Admin/AdminPage.razor.rz.scp.css */
.home-page[b-5ztpc14qbp]{
    display:flex;
    flex-wrap:wrap;
    font-family:'Comic Sans MS';
    padding:10px;
}
    .home-page[b-5ztpc14qbp]  .home-card {
        margin: 10px;
        box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
        min-width:200px;
    }
    .home-page[b-5ztpc14qbp]  .home-card-header {
        display: flex;
        padding: 20px 5px;
        justify-content: center;
        justify-items: center;
        align-items: center;
        align-content: center;
        color:azure;
    }
    .home-page[b-5ztpc14qbp]  .home-card-content {
        display:flex;
        flex-direction:column;
        padding: 20px 5px;
        align-items:center;
        color:darkslategrey;
        padding:0;
    }


@media (max-aspect-ratio: 1/1) {
}
/* _content/Kalorindo/GeneralPage/AIAgent/AIAgent.razor.rz.scp.css */
.ai-agent-shell[b-m73ex1qsz2] {
    flex: 1;
    min-height: 0;
    display: flex;
    gap: 16px;
    color: #202124;
}

.agent-sidebar[b-m73ex1qsz2] {
    flex: 0 0 280px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.08);
}

.sidebar-header[b-m73ex1qsz2],
.chat-toolbar[b-m73ex1qsz2] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sidebar-header h4[b-m73ex1qsz2],
.chat-toolbar h4[b-m73ex1qsz2] {
    margin: 2px 0 0 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.eyebrow[b-m73ex1qsz2] {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.agent-status[b-m73ex1qsz2] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f3f7f4;
    border: 1px solid #d8ecdd;
    color: #176b36;
    font-weight: 700;
}

.status-dot[b-m73ex1qsz2] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

.quick-prompts[b-m73ex1qsz2] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
}

.quick-prompts button[b-m73ex1qsz2] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    color: #1f2937;
    text-align: left;
    cursor: pointer;
}

.quick-prompts button:hover[b-m73ex1qsz2] {
    border-color: var(--ipk_Theme);
    background: #fff7f0;
}

.chat-panel[b-m73ex1qsz2] {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.08);
}

.chat-toolbar[b-m73ex1qsz2] {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.messages[b-m73ex1qsz2] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    overflow-y: auto;
    background: #f8fafc;
}

.message-row[b-m73ex1qsz2] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 82%;
}

.message-row.from-user[b-m73ex1qsz2] {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.message-row.from-agent[b-m73ex1qsz2] {
    align-self: flex-start;
}

.avatar[b-m73ex1qsz2] {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: var(--ipk_Theme);
}

.bubble[b-m73ex1qsz2] {
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.05);
}

.from-user .bubble[b-m73ex1qsz2] {
    background: #fff7f0;
    border-color: #ffd7b8;
}

.bubble span[b-m73ex1qsz2] {
    display: block;
    margin-bottom: 4px;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 700;
}

.bubble p[b-m73ex1qsz2] {
    margin: 0;
    line-height: 1.45;
    white-space: pre-line;
}

.composer[b-m73ex1qsz2] {
    flex: 0 0 72px;
    /*position: sticky;*/
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f0f2f5;
}

.prompt-input[b-m73ex1qsz2] {
    flex: 1;
    height: 44px;
    /*width:300px;*/
    /*min-height: 44px;
    max-height: 44px;*/
    resize: none;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 22px;
    background: #ffffff;
    outline: none;
    font: inherit;
    line-height: 1.35;
    /*overflow-y: auto;*/
}

.prompt-input:focus[b-m73ex1qsz2] {
    border-color: var(--ipk_Theme);
}

.composer[b-m73ex1qsz2]  .mud-icon-button {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .ai-agent-shell[b-m73ex1qsz2] {
        flex-direction: column;
    }

    .agent-sidebar[b-m73ex1qsz2] {
        flex: 0 0 auto;
        min-width: 0;
    }

    .message-row[b-m73ex1qsz2] {
        max-width: 96%;
    }
}
/* _content/Kalorindo/GeneralPage/AppTools/AppTools.razor.rz.scp.css */
.home-page[b-cjuug1p4cd] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: 'Comic Sans MS';
    justify-content: center;
}

.home-page-title[b-cjuug1p4cd] {
    width: 100%;
    display: flex;
    align-items: center; /* Pusatkan secara vertikal */
    justify-content: center; /* Pusatkan secara horizontal */
    border-bottom: 1px solid var(--ipk_Theme);
    color: var(--ipk_Theme);
}

.home-page-1[b-cjuug1p4cd] {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

    .home-page-1[b-cjuug1p4cd]  .home-card {
        margin: 10px;
        box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
        min-width: 200px;
    }

    .home-page-1[b-cjuug1p4cd]  .home-card-header {
        display: flex;
        padding: 20px 5px;
        justify-content: center;
        justify-items: center;
        align-items: center;
        align-content: center;
        color: azure;
    }

    .home-page-1[b-cjuug1p4cd]  .home-card-content {
        display: flex;
        flex-direction: column;
        padding: 20px 5px;
        align-items: center;
        color: darkslategrey;
        padding: 0;
    }

.home-page-2[b-cjuug1p4cd] {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
}

@media (max-aspect-ratio: 1/1) {
}
/* _content/Kalorindo/GeneralPage/Chat/ChatApp.razor.rz.scp.css */
.body[b-ozhbx97n4r] {
    display: flex;
    height: 100%;
    font-family: Arial, sans-serif;
    flex-direction: row;
    border: 1px solid #E8EBEA;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
}

.sidebar[b-ozhbx97n4r] {
    width: 25%;
    background: #E8EBEA;
    display: flex;
    flex-direction: column;
}

.sidebar-header[b-ozhbx97n4r], .chat-header[b-ozhbx97n4r] {
    height: 60px;
    background: var(--ipk_Theme);
    display: flex;
    align-items: center;
    padding: 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.chat-list[b-ozhbx97n4r] {
    flex: 1;
    background: white;
    overflow-y: auto;
}

.chat-list-item[b-ozhbx97n4r] {
    border-bottom: 1px solid #E8EBEA;
    display: flex;
    align-items: center;
    position: relative;
}

    .chat-list-item label[b-ozhbx97n4r] {
        width: 100%;
        cursor: pointer;
        padding: 10px;
    }

    .chat-list-item input[type="radio"][b-ozhbx97n4r] {
        position: absolute;
        opacity: 0;
    }

    .chat-list-item:hover[b-ozhbx97n4r] {
        background: #F5F7F7;
    }

    .chat-list-item input[type="radio"]:checked + label[b-ozhbx97n4r] {
        background: #E8EBEA;
        width: 100%;
    }

.main-content[b-ozhbx97n4r] {
    flex: 1;
    background: #0D1418;
    display: flex;
    flex-direction: column;
}

.chat-header[b-ozhbx97n4r] {
    background: white;
    color: #0D1418;
}

.chat-messages[b-ozhbx97n4r] {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-image: url('LayoutImage/chat-bg.jpg');
    display:flex;
    flex-direction:column;
    gap:10px;
}
.message-container[b-ozhbx97n4r] {
    background-color: white;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
    padding:10px;
    max-width:80%;
    width:fit-content;
    border-radius:5px;
}
.right[b-ozhbx97n4r] {
    margin-left: auto;
    background-color:aquamarine;
}
.message-input[b-ozhbx97n4r] {
    height: 60px;
    background: #E8EBEA;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 5px;
}

input[b-ozhbx97n4r] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
/* _content/Kalorindo/GeneralPage/Dashboard/Dashboard.razor.rz.scp.css */
.home-page[b-95921uy1lc] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: 'Comic Sans MS';
    justify-content: center;
}


.home-page-title[b-95921uy1lc] {
    width: 100%;
    display: flex;
    align-items: center; /* Pusatkan secara vertikal */
    justify-content: center; /* Pusatkan secara horizontal */
    border-bottom: 1px solid #214162;
    /*color: var(--ipk_Theme);*/
    color: #214162;
}

.home-page-1[b-95921uy1lc] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
    .home-page-1[b-95921uy1lc]  .home-card {
        margin: 10px;
        box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
        min-width: 200px;
    }
    .home-page-1[b-95921uy1lc]  .home-card-header {
        display: flex;
        padding: 20px 5px;
        justify-content: center;
        justify-items: center;
        align-items: center;
        align-content: center;
        color: azure;
    }
    .home-page-1[b-95921uy1lc]  .home-card-content {
        display: flex;
        flex-direction: column;
        padding: 20px 5px;
        align-items: center;
        color: darkslategrey;
        padding: 0;
    }
.home-page-2[b-95921uy1lc] {
    display: flex;
    flex-wrap: wrap;
}

.select-container[b-95921uy1lc]{
    display:flex;
    gap:10px;
    margin-left:auto;
}

[b-95921uy1lc] .form-select-custom {
    width: 120px;
    height: 40px;
    min-height: 40px;
    padding: 0 42px 0 14px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.5);
    background-image: linear-gradient(45deg, transparent 50%, #5f6368 50%), linear-gradient(135deg, #5f6368 50%, transparent 50%);
    background-position: calc(100% - 18px) 16px, calc(100% - 12px) 16px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.38);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.87);
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    outline: 0;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

    [b-95921uy1lc] .form-select-custom:hover {
        border-color: rgba(0, 0, 0, 0.87);
    }

    [b-95921uy1lc] .form-select-custom:focus {
        border-color: #594ae2;
        border-width: 2px;
        box-shadow: none;
        padding-left: 13px;
    }

[b-95921uy1lc] .form-select-custom:disabled {
    background-color: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.26);
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.hidden[b-95921uy1lc] {
    display: none;
}

@media (max-aspect-ratio: 1/1) {
}
/* _content/Kalorindo/GeneralPage/HistoricalFailure/HistoricalFailurePage.razor.rz.scp.css */
.form-content[b-a5tuof9lbd] {
    flex: 1;
    display: flex;
    min-height: 0;
    /*overflow: auto;*/
    flex-direction: column;
}

    .form-content[b-a5tuof9lbd]  .mud-tabs {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .form-content[b-a5tuof9lbd]  .mud-tabs-panels {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .form-content[b-a5tuof9lbd]  .mud-tab-panel {
        height: 100%;
        min-height: 0;
    }

    .form-content[b-a5tuof9lbd]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

.table-content-inside-tab[b-a5tuof9lbd] {
    flex: 1;
    padding: 25px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}
.content-inside-tab[b-a5tuof9lbd] {
    flex: 1;
    padding: 25px;
    overflow: auto;
    height: 100%;
    min-height: 0;
}
/* _content/Kalorindo/GeneralPage/Home/Home.razor.rz.scp.css */
.ipk-bg[b-yq7y2essr3] {
    /*background-image: url('LayoutImage/ipk_bg.png');
    background-size: cover;
    background-position: center;*/
}
/* _content/Kalorindo/GeneralPage/Login/Login.razor.rz.scp.css */
.body[b-8ayjmbtaat] {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: 'Poppins',sans-serif;
    overflow: auto;
    position: relative;
    /*background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);*/
}
.signup-message-ontop[b-8ayjmbtaat] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 60px;
    margin:0;
    padding:0 10px;
}
.main[b-8ayjmbtaat] {
    width: 350px;
    height: 530px;
    overflow: hidden;
    background: var(--ipk_Theme) no-repeat center;
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
}

#chk[b-8ayjmbtaat] {
    display: none;
}

.signup[b-8ayjmbtaat] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-bottom:80px;
}

.label-login[b-8ayjmbtaat] {
    color: #fff;
    font-size: 2.3em;
    justify-content: center;
    display: flex;
    margin: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}

input[b-8ayjmbtaat] {
    width: 60%;
    height: 10px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 20px auto;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 5px;
}

button[b-8ayjmbtaat] {
    width: 60%;
    height: 40px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #fff;
    background: #573b8a;
    font-size: 1em;
    font-weight: bold;
    margin-top: 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

    button:hover[b-8ayjmbtaat] {
        background: #6d44b8;
    }

.login[b-8ayjmbtaat] {
    height: 510px;
    background: #eee;
    border-radius: 60% / 10%;
    transform: translateY(-90px);
    transition: .8s ease-in-out;
}

    .login label[b-8ayjmbtaat] {
        color: #573b8a;
        transform: scale(.6);
    }

#chk:checked ~ .login[b-8ayjmbtaat] {
    transform: translateY(-470px);
}

    #chk:checked ~ .login label[b-8ayjmbtaat] {
        transform: scale(1);
    }

#chk:checked ~ .signup label[b-8ayjmbtaat] {
    transform: scale(.6);
}


.form-container[b-8ayjmbtaat] {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    align-items: center;
    
}

.input-text-container[b-8ayjmbtaat] {
    display: flex;
    flex-direction: column;
    width: 60%;
}
    .input-text-container label[b-8ayjmbtaat] {
        font-size: 14px;
    }
    .input-text-container span[b-8ayjmbtaat] {
        font-size: 14px;
    }


/* _content/Kalorindo/GeneralPage/MemberList/Member.razor.rz.scp.css */


.main-page[b-th94kr70fo] {
    display: flex;
    flex:1;
    gap: 10px;
    flex-direction: column;
    overflow: visible;
    transition: flex 0.3s ease-in-out;
}

.action[b-th94kr70fo] {
    display: flex;
    justify-content: end;
}

    .action button[b-th94kr70fo] {
        font-size: 16px;
        background-color: green;
        height: 35px;
        color: white;
        cursor: pointer;
        width: 120px;
    }

.form[b-th94kr70fo] {
    display: flex;
    gap: 4px;
    flex-direction: column;
    overflow: visible;
    margin: 5px;
}

.border[b-th94kr70fo] {
    margin: 2px 4px;
    border-left: 1px solid var(--fn_MainBorder);
}

.logo-container[b-th94kr70fo] {
    flex: 1;
}

.icon[b-th94kr70fo] {
    margin: 5px;
    width: 100px;
}

.user-info[b-th94kr70fo] {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}

    .user-info span[b-th94kr70fo] {
        font-size: 20px;
        color: var(--fn_Theme);
        align-items: center;
        justify-content: center;
    }

    .user-info img[b-th94kr70fo] {
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }




/*Untuk Menyembunyikan Element*/
.general-hidden-class[b-th94kr70fo] {
    display: none;
}

/*KHUSUS TABEL*/
.even-row[b-th94kr70fo] {
    background-color: transparent; /* Warna untuk baris genap */
}

.odd-row[b-th94kr70fo] {
    background-color: transparent; /* Warna untuk baris ganjil */
}

.table[b-th94kr70fo] {
    width: 100%;
    border-collapse: collapse;
}

    .table th[b-th94kr70fo], .table td[b-th94kr70fo] {
        padding: 8px;
        text-align: center;
        background-color:transparent;
        vertical-align:middle;
    }
    .table td[b-th94kr70fo]{

    }

    .table th[b-th94kr70fo] {
        border-bottom: 1px solid var(--fn_Theme);
    }
td img[b-th94kr70fo] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background: var(--fn_MainBackground)
}

.online-status[b-th94kr70fo] {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content:end;
}
    .online-status p[b-th94kr70fo] {
        font-size: 16px;
        font-weight: 500;
        color: #1ed085;
        margin: 0;
        padding: 0;
    }

@keyframes blink-b-th94kr70fo {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.online-animation[b-th94kr70fo] {
    width: 12px;
    height: 12px;
    background: #1ed085;
    border-radius: 100%;
    animation: blink-b-th94kr70fo 2s infinite;
}


@media (max-aspect-ratio: 1/1) {

}
/* _content/Kalorindo/GeneralPage/MyProfile/MyProfile.razor.rz.scp.css */
h6[b-p4lt8zbk3d], p[b-p4lt8zbk3d]{
    margin:0;
    padding:0;
}

.profile-content[b-p4lt8zbk3d] {
    align-items:center;
}
.profile-container[b-p4lt8zbk3d] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width:500px;
}
.profile-title[b-p4lt8zbk3d] {
    background: var(--fn_MainBackground);
    min-height: 3rem;
    padding: 0 10px;
    border: none;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center; /* Pusatkan secara vertikal */
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.2);
}
.profile-detail[b-p4lt8zbk3d] {
    background: var(--fn_MainBackground);
    display: flex;
    gap: 20px;
    padding: 30px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    align-items: center;
    border-radius: 0 0 6px 6px;
}
    .profile-detail img[b-p4lt8zbk3d] {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    }
.profile-detail-list[b-p4lt8zbk3d] {
    
}
button[b-p4lt8zbk3d]{
    /*border:none;
    border-radius:5px;*/
}
    button span[b-p4lt8zbk3d] {
        /*color: #898989;*/
    }
.contact[b-p4lt8zbk3d] {
    font-size: 14px;
}
    .contact span[b-p4lt8zbk3d], .contact-status[b-p4lt8zbk3d] {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: normal;
    }

.update-profile[b-p4lt8zbk3d]{
    margin-top:10px;
}
.form-profile-update[b-p4lt8zbk3d] {
    background: var(--fn_MainBackground);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 6px 6px;

    /*height: 300px;*/
}
.list-unstyled[b-p4lt8zbk3d]{
    padding-left:0;
    list-style:none;
}
.list-unstyled li[b-p4lt8zbk3d] {
    display:flex;
    align-items:center;
    height:30px;
    gap:5px;
}
    .list-unstyled li span[b-p4lt8zbk3d]{
        margin-bottom:5px;
    }

@media (max-width: 640.98px) {
    .profile-detail img[b-p4lt8zbk3d] {
        width: 100px;
        height: 100px;
    }
}

/* _content/Kalorindo/GeneralPage/Project/AddProject/AddProject.razor.rz.scp.css */
tr td[b-ey3iuu67p0] {
    background-color: transparent;
    border: none;
    align-content: center;
    padding: 5px;
}

tr th[b-ey3iuu67p0] {
    background-color: transparent;
    text-align: left;
    padding: 5px;
    color: blue;
    border-bottom: 1px solid var(--ipk_Theme);
}

.custom-mud-text-field[b-ey3iuu67p0] {
    height: 300px;
}

.form-content[b-ey3iuu67p0] {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: hidden;
    flex-direction: column;
}

.form-content[b-ey3iuu67p0]  .mud-tabs {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.form-content[b-ey3iuu67p0]  .mud-tabs-panels {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.form-content[b-ey3iuu67p0]  .mud-tab-panel {
    height: 100%;
    min-height: 0;
}

.form-content[b-ey3iuu67p0]  form {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.table-content[b-ey3iuu67p0] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.table[b-ey3iuu67p0] {
    width: 100%;
}

.button-content[b-ey3iuu67p0] {
    flex: 0 0 auto;
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
/* _content/Kalorindo/GeneralPage/Project/DetailProject/DetailProject.razor.rz.scp.css */
.detail-field-grid[b-ag2hom48n5] {
    /*max-width: 840px;*/
}

.grid-container[b-ag2hom48n5] {
    flex: 1;
    overflow: auto;
    width: 100%;
    height: 100%;
}

.detail-field-grid .mud-table-cell[b-ag2hom48n5] {
    vertical-align: top;
}

.manual-detail-grid[b-ag2hom48n5] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mud-palette-lines-default);
    font-size: 0.875rem;
}

.manual-detail-grid th[b-ag2hom48n5],
.manual-detail-grid td[b-ag2hom48n5] {
    border: 1px solid var(--mud-palette-lines-default);
    padding: 6px 16px;
    height: 38px;
    text-align: left;
    vertical-align: middle;
}

.manual-detail-grid th[b-ag2hom48n5] {
    background-color: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}

.manual-detail-grid td:first-child[b-ag2hom48n5] {
    width: 240px;
    font-weight: 600;
}

.manual-detail-grid tbody tr:hover[b-ag2hom48n5] {
    background-color: var(--mud-palette-action-default-hover);
}

.table-content[b-ag2hom48n5] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.form-content[b-ag2hom48n5] {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: auto;
    flex-direction: column;
}

    .form-content[b-ag2hom48n5]  .mud-tabs {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .form-content[b-ag2hom48n5]  .mud-tabs-panels {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .form-content[b-ag2hom48n5]  .mud-tab-panel {
        height: 100%;
        min-height: 0;
    }

    .form-content[b-ag2hom48n5]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

.button-content[b-ag2hom48n5] {
    flex: 0 0 auto;
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
/* _content/Kalorindo/GeneralPage/Project/ProjectList/ProjectList.razor.rz.scp.css */
.home-page[b-3h885btxyt] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: 'Comic Sans MS';
    justify-content: center;
}

.home-page-title[b-3h885btxyt] {
    width: 100%;
    display: flex;
    align-items: center; /* Pusatkan secara vertikal */
    justify-content: center; /* Pusatkan secara horizontal */
    border-bottom: 1px solid var(--ipk_Theme);
    color: var(--ipk_Theme);
}
/* _content/Kalorindo/GeneralPage/Project/ProjectList/ProjectListVOID.razor.rz.scp.css */

.main-page[b-u1ofd748yx] {
    display: flex;
    flex: 1;
    gap: 10px;
    flex-direction: column;
    overflow: visible;
    transition: flex 0.3s ease-in-out;
}

.action[b-u1ofd748yx] {
    display: flex;
    justify-content: end;
}

    .action button[b-u1ofd748yx] {
        font-size: 16px;
        background-color: green;
        height: 35px;
        color: white;
        cursor: pointer;
        width: 120px;
    }

.form[b-u1ofd748yx] {
    display: flex;
    gap: 4px;
    flex-direction: column;
    overflow: visible;
    margin: 5px;
}

.border[b-u1ofd748yx] {
    margin: 2px 4px;
    border-left: 1px solid var(--fn_MainBorder);
}

.logo-container[b-u1ofd748yx] {
    flex: 1;
}

.icon[b-u1ofd748yx] {
    margin: 5px;
    width: 100px;
}

.user-info[b-u1ofd748yx] {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}

    .user-info span[b-u1ofd748yx] {
        font-size: 20px;
        color: var(--fn_Theme);
        align-items: center;
        justify-content: center;
    }

    .user-info img[b-u1ofd748yx] {
        height: 40px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }




/*Untuk Menyembunyikan Element*/
.general-hidden-class[b-u1ofd748yx] {
    display: none;
}

/*KHUSUS TABEL*/
.even-row[b-u1ofd748yx] {
    background-color: #f2f2f2; /* Warna untuk baris genap */
}

.odd-row[b-u1ofd748yx] {
    background-color: #ffffff; /* Warna untuk baris ganjil */
}

.table[b-u1ofd748yx] {
    width: 100%;
    border-collapse: collapse;
    font-size:12px;
}

    .table th[b-u1ofd748yx], .table td[b-u1ofd748yx] {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
        background-color: transparent;
        vertical-align: middle;
    }

    .table td[b-u1ofd748yx] {
    }

    .table th[b-u1ofd748yx] {
        background-color: var(--fn_Theme);
        color: white;
    }


@media (max-aspect-ratio: 1/1) {
}
/* _content/Kalorindo/GeneralPage/Tender/AddTender/AddTender.razor.rz.scp.css */
.detail-field-grid[b-4onqzx3b0z] {
    /*max-width: 840px;*/
}

.grid-container[b-4onqzx3b0z] {
    flex: 1;
    overflow: auto;
    width: 100%;
    height: 100%;
}

.detail-field-grid .mud-table-cell[b-4onqzx3b0z] {
    vertical-align: top;
}

.manual-detail-grid[b-4onqzx3b0z] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mud-palette-lines-default);
    font-size: 0.875rem;
}

    .manual-detail-grid th[b-4onqzx3b0z],
    .manual-detail-grid td[b-4onqzx3b0z] {
        border: 1px solid var(--mud-palette-lines-default);
        padding: 6px 16px;
        height: 38px;
        text-align: left;
        vertical-align: middle;
    }

    .manual-detail-grid th[b-4onqzx3b0z] {
        background-color: var(--mud-palette-background-grey);
        color: var(--mud-palette-text-primary);
        font-weight: 600;
    }

    .manual-detail-grid td:first-child[b-4onqzx3b0z] {
        width: 240px;
        font-weight: 600;
    }

    .manual-detail-grid tbody tr:hover[b-4onqzx3b0z] {
        background-color: var(--mud-palette-action-default-hover);
    }

.table-content[b-4onqzx3b0z] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.form-content[b-4onqzx3b0z] {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: auto;
    flex-direction: column;
}

    .form-content[b-4onqzx3b0z]  .mud-tabs {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .form-content[b-4onqzx3b0z]  .mud-tabs-panels {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .form-content[b-4onqzx3b0z]  .mud-tab-panel {
        height: 100%;
        min-height: 0;
    }

    .form-content[b-4onqzx3b0z]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

.button-content[b-4onqzx3b0z]{
    display:flex;
    gap:5px;
}
/* _content/Kalorindo/GeneralPage/Tender/BillOfMaterial/BillOfMaterial.razor.rz.scp.css */
.select-container[b-cppdq9egqx] {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.detail-field-grid[b-cppdq9egqx] {
    /*max-width: 840px;*/
}

.grid-container[b-cppdq9egqx] {
    flex: 1;
    overflow: auto;
    width: 100%;
    height: 100%;
}

.detail-field-grid .mud-table-cell[b-cppdq9egqx] {
    vertical-align: top;
}

.manual-detail-grid[b-cppdq9egqx] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mud-palette-lines-default);
    font-size: 0.875rem;
}

    .manual-detail-grid th[b-cppdq9egqx],
    .manual-detail-grid td[b-cppdq9egqx] {
        border: 1px solid var(--mud-palette-lines-default);
        padding: 6px 16px;
        height: 38px;
        text-align: left;
        vertical-align: middle;
    }

    .manual-detail-grid th[b-cppdq9egqx] {
        background-color: var(--mud-palette-background-grey);
        color: var(--mud-palette-text-primary);
        font-weight: 600;
    }

    .manual-detail-grid td:first-child[b-cppdq9egqx] {
        width: 240px;
        font-weight: 600;
    }

    .manual-detail-grid tbody tr:hover[b-cppdq9egqx] {
        background-color: var(--mud-palette-action-default-hover);
    }

.table-content[b-cppdq9egqx] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.form-content[b-cppdq9egqx] {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: auto;
    flex-direction: column;
}

    .form-content[b-cppdq9egqx]  .mud-tabs {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .form-content[b-cppdq9egqx]  .mud-tabs-panels {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .form-content[b-cppdq9egqx]  .mud-tab-panel {
        height: 100%;
        min-height: 0;
    }

    .form-content[b-cppdq9egqx]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

.button-content[b-cppdq9egqx] {
    display: flex;
    gap: 5px;
}

/* _content/Kalorindo/GeneralPage/Tender/DetailTender/DetailTender.razor.rz.scp.css */
.detail-field-grid[b-2rcsb07s5y] {
    /*max-width: 840px;*/
}

.grid-container[b-2rcsb07s5y] {
    flex: 1;
    overflow: auto;
    width: 100%;
    height: 100%;
}

.detail-field-grid .mud-table-cell[b-2rcsb07s5y] {
    vertical-align: top;
}

.manual-detail-grid[b-2rcsb07s5y] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--mud-palette-lines-default);
    font-size: 0.875rem;
}

    .manual-detail-grid th[b-2rcsb07s5y],
    .manual-detail-grid td[b-2rcsb07s5y] {
        border: 1px solid var(--mud-palette-lines-default);
        padding: 6px 16px;
        height: 38px;
        text-align: left;
        vertical-align: middle;
    }

    .manual-detail-grid th[b-2rcsb07s5y] {
        background-color: var(--mud-palette-background-grey);
        color: var(--mud-palette-text-primary);
        font-weight: 600;
    }

    .manual-detail-grid td:first-child[b-2rcsb07s5y] {
        width: 240px;
        font-weight: 600;
    }

    .manual-detail-grid tbody tr:hover[b-2rcsb07s5y] {
        background-color: var(--mud-palette-action-default-hover);
    }

.table-content[b-2rcsb07s5y] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.form-content[b-2rcsb07s5y] {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: auto;
    flex-direction: column;
}

    .form-content[b-2rcsb07s5y]  .mud-tabs {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .form-content[b-2rcsb07s5y]  .mud-tabs-panels {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .form-content[b-2rcsb07s5y]  .mud-tab-panel {
        height: 100%;
        min-height: 0;
    }

    .form-content[b-2rcsb07s5y]  form {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

.button-content[b-2rcsb07s5y] {
    display: flex;
    gap: 5px;
}
/* _content/Kalorindo/GeneralPage/Tender/TenderList/TenderList.razor.rz.scp.css */
/**{
    box-sizing:border-box;
}*/

.home-page[b-uy6ae20kiy] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    font-family: 'Comic Sans MS';
    justify-content: center;
}

.home-page-title[b-uy6ae20kiy] {
    width: 100%;
    display: flex;
    align-items: center; /* Pusatkan secara vertikal */
    justify-content: center; /* Pusatkan secara horizontal */
    border-bottom: 1px solid var(--ipk_Theme);
    color: var(--ipk_Theme);
}
.select-container[b-uy6ae20kiy] {
    display: flex;
    gap: 10px;
    margin-left: auto;
}
.page-sub-title[b-uy6ae20kiy] {
    min-height: 3rem;
    padding:0 10px 0 10px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction:row-reverse;
    gap:10px
}
/* _content/Kalorindo/Layout/MainLayout.razor.rz.scp.css */
.page[b-0z12h1fvh8] {
    position:relative;
    display: flex;
    /*flex-direction: column;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100vw;
    height: 100vh;
}

main[b-0z12h1fvh8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0; /* Sangat PENTING  */
    background-color:#EAF2FF;
}
article[b-0z12h1fvh8] {
    height: calc(100vh - 3.5rem);
    /*display: flex;*/
    flex: 1;
    width: calc(100%);
    min-width: 0; /* Sangat PENTING  */
}


.sidebar[b-0z12h1fvh8] {
    background-color: #15283c;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.4);
    background-image: url(LayoutImage/pattern.png);
    z-index: 3;
}
.loading-overlay[b-0z12h1fvh8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Transparan */
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    /*cursor: wait;*/
}
    .loading-overlay .spinner[b-0z12h1fvh8] {
        width: 50px;
        height: 50px;
        border: 5px solid #ccc;
        border-top: 5px solid #007bff;
        border-radius: 50%;
        animation: spin-b-0z12h1fvh8 1s linear infinite;
    }

@keyframes spin-b-0z12h1fvh8 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#show-hide-sidebar[b-0z12h1fvh8] {
    display:none;
}
    #show-hide-sidebar:checked ~ .logo[b-0z12h1fvh8] {
        background-color: red;
        width: 500px;
    }

.top-row[b-0z12h1fvh8] {
    /*background: #15283c;*/
    height: 3.5rem;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1;
}

.title-text[b-0z12h1fvh8] {
    height: 100%;
    align-content: center;
    margin-left: 10px;
}
    .title-text h1[b-0z12h1fvh8] {
        color: #214162;
        font-family: Arial;
        font-weight: bold;
    }

.logo[b-0z12h1fvh8] {
    display: flex;
    width: auto;
    background: transparent;
}
    .logo img[b-0z12h1fvh8] {
        height:calc(100%-10px);
        margin:5px;
    }
    .toggle-menu input[b-0z12h1fvh8]{
        display:none;
    }
.toggle-menu[b-0z12h1fvh8]  .toggle-menu-icon {
    color: #15283c;
    font-size: 2.5rem;
    /*background-color: var(--ipk_Theme);*/
    height: 80%;
    width: 40px;
    cursor: pointer;
    margin-top:5.5px;
}

.right-topbar[b-0z12h1fvh8] {
    display:flex;
    flex: 1;
    padding: 0;
    justify-content: flex-end;
    flex-direction:row;
}



.icon-info[b-0z12h1fvh8] {
    
}
@media (max-width: 640.98px) {
    .sidebar-expand[b-0z12h1fvh8] {
        position: fixed;
        top: 3.5rem;
        left: -250px;
        width: 250px;
        height: 100vh;
        flex-shrink: 0; /* jangan mengecil */
    }

    .sidebar-collapse[b-0z12h1fvh8] {
        position: fixed;
        top: 3.5rem;
        left: 0;
        width: 250px;
        height: 100vh;
        flex-shrink: 0; /* jangan mengecil */
    }

    .sidebar-collapse-bymedia[b-0z12h1fvh8] {
        left: -250px;
    }

    .overlay[b-0z12h1fvh8] {
        display: block;
        position: fixed;
        top: 3.5rem;
        left: 0;
        width: 100%;
        height: 100%;
        z-index:2;
    }
}

@media (min-width: 641px) {
    .sidebar-expand[b-0z12h1fvh8] {
        width: 250px;
        flex-shrink: 0; /* jangan mengecil */
    }
    .sidebar-collapse[b-0z12h1fvh8] {
        width: 70px;
        flex-shrink: 0; /* jangan mengecil */
    }

    /*.sidebar-expand-bymedia {
        width: 250px;
    }*/
    .sidebar-collapse-bymedia[b-0z12h1fvh8] {
        left:unset;
    }
    .overlay[b-0z12h1fvh8]{
        display:none;
    }

}

#blazor-error-ui[b-0z12h1fvh8] {
    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-0z12h1fvh8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Kalorindo/Layout/NavMenu.razor.rz.scp.css */
h3[b-1mry1cuptv]{
    margin:0;
    padding:0;
}

.nav-menu-container[b-1mry1cuptv] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.display-hide[b-1mry1cuptv] {
    display: none;
}

/*.nav-text {
    font-size: 16px;
    margin-left: 5px;
    display: block;
}*/

.top-row[b-1mry1cuptv] {
    height: 8rem;
    /*padding: 0.2rem;*/
    background-color: #214162;
    align-content:center;
    display:flex;
}

[b-1mry1cuptv]::-webkit-scrollbar {
    display: none;
}

.nav-scrollable[b-1mry1cuptv] {
    display: block;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-item[b-1mry1cuptv] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1mry1cuptv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1mry1cuptv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1mry1cuptv]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
        padding-left:10px;
    }

.nav-item[b-1mry1cuptv]  a.active {
    background-color: rgba(255,255,255,0.15);
    color: white;
}

.nav-item[b-1mry1cuptv]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.submenu[b-1mry1cuptv] {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.submenu-open[b-1mry1cuptv] {
    max-height: 16rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.container-fluid[b-1mry1cuptv] {
    display: flex;
    padding: 25px 45px 25px 30px;
    flex:1;
}

.container-fluid img[b-1mry1cuptv] {
    flex: 1;
    width:100%;
    height:100%;
    border-radius:10px;
    /*margin:5px 30px 5px 5px;*/
}

.user-image-img[b-1mry1cuptv] {
    border-radius: 100% 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.8);
    background: var(--fn_MainBackground);
}
.user-info[b-1mry1cuptv]{
    gap:5px;
    flex:1;
    padding:10px;
    align-content:flex-start;
}
    .user-info p[b-1mry1cuptv] {
        font-size: 16px;
        font-weight: 500;
        color: #1ed085;
        margin: 0;
        padding: 0;
    }
    .user-info h3[b-1mry1cuptv] {
        margin: 0;
        padding:0;
    }
.online-status[b-1mry1cuptv] {
    display: flex;
    gap: 4px;
    align-items: center;
}
@keyframes blink-b-1mry1cuptv {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
.online-animation[b-1mry1cuptv] {
    width: 12px;
    height: 12px;
    background: #1ed085;
    border-radius: 100%;
    animation: blink-b-1mry1cuptv 2s infinite;
}
@media (max-width: 640.98px) {
    .nav-text-expand[b-1mry1cuptv] {
        display: none;
    }

    .nav-text-collapse[b-1mry1cuptv] {
        font-size: 16px;
        margin-left: 5px;
        display: block;
    }
    .user-info-expand[b-1mry1cuptv] {
        display: none;
    }
    .user-info-collapse[b-1mry1cuptv] {
        display: flex;
        flex-direction: column;
    }
    .user-img-large[b-1mry1cuptv] {
        width: 75px;
        height: 75px;
        float: left;
    }

    .user-img-small[b-1mry1cuptv] {
        width: 75px;
        height: 75px;
        float: left;
    }
}
@media (min-width: 641px) {
    .nav-text-expand[b-1mry1cuptv] {
        font-size: 16px;
        margin-left: 5px;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
    .nav-text-collapse[b-1mry1cuptv] {
        font-size: 16px;
        margin-left: 5px;
        opacity: 0; /* Sembunyikan teks */
        white-space: nowrap;
        transition: opacity 0.5s ease-in-out;
    }

    .user-info-collapse[b-1mry1cuptv] {
        display: none;
    }
    .user-info-expand[b-1mry1cuptv] {
        display: flex;
        flex-direction: column;
    }
    .user-img-large[b-1mry1cuptv] {
        width: 75px;
        height: 75px;
        float: left;
    }

    .user-img-small[b-1mry1cuptv] {
        width: 45px;
        height: 45px;
        float: left;
    }
}
