﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,600;6..12,700&family=Permanent+Marker&display=swap');
/*
@font-face {
    font-family: "PageFont";
    src: url('../Fonts/DMSerifDisplay-Regular.tff');
}
*/
html, body {
    /*font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
    font-family: 'Nunito Sans', sans-serif;
}

@media print {
    .no-print {
        display: none !important;
    }

    .only-print {
        display: block;
    }
}

@media screen {
    .only-print {
        display: none;
    }
}

.instruktion-container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    padding: 10px 16px;
    max-width: 800px;
    max-height: 600px; /* maxhöjd */
    overflow-y: auto; /* visa scroll om det behövs */
    padding-right: 4px; /* liten marginal så inte scrollen ligger över texten */
}

.instruktion-section {
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

    .instruktion-section:last-child {
        border-bottom: none;
    }

.instruktion-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #222;
}

.instruktion-title-icon {
    font-size: 16px;
}

.instruktion-subtitle {
    font-size: 14px;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 3px;
}

.instruktion-section p {
    margin: 2px 0 4px 0;
}

.instruktion-section ul,
.instruktion-section ol {
    margin-top: 2px;
    margin-bottom: 6px;
    padding-left: 20px;
}

.instruktion-tip {
    margin: 6px 0;
    padding: 6px 10px;
    border-left: 4px solid #888;
    background: #f7f7f7;
    font-size: 13px;
}

.instruktion-tip-emoji {
    margin-right: 4px;
}

.instruktion-inline-strong {
    font-weight: 600;
}

.date-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-height: 150px; /* maxhöjd */
    overflow-y: auto; /* visa scroll om det behövs */
    padding-right: 4px; /* liten marginal så inte scrollen ligger över texten */
}

.date-item {
    white-space: nowrap;
}


.upload-wrapper {
    position: relative;
    width: 100%;
}

.upload-area {
    border: 2px dashed #888;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #444;
    background-color: #f9f9f9;
}

    .upload-area:hover {
        border-color: #555;
        background-color: #f0f0f0;
    }

    .upload-area.drag-over {
        border-color: #007bff;
        background-color: #e8f0ff;
        color: #007bff;
    }

.upload-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.upload-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

/* Dölj Blazors riktiga input, men låt den fortfarande ta emot klick */
.real-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}



.priceTemplateColAdd {
    width:5rem;
}

.priceTemplateColSet {
    width: 6rem;
}

.priceTemplateColCent {
    width: 5rem;
}

.priceTemplateColDelete {
    width: 5rem;
    text-align:center;
}

.form-check-input:checked {
    background-color: #47597E;
    border-color: #47597E;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(71, 89, 126, 0.25);
    border-color: #47597E;
}

.highlighted-row {
    background-color: #fff3cd !important;
    border-left: 4px solid #ffc107; /* starkare gul kant */
    transition: background-color 0.3s ease, border-left 0.3s ease;
}

.textarea-wrapperSQL {
    /*max-height: 1500px;*/
    overflow-y: auto; /* vertikal scroll */
    overflow-x: auto; /* horisontell scroll */
}

    .textarea-wrapperSQL textarea {
        height: auto;
        min-height: 600px;
        resize: none; /* eller vertical/horizontal/both om du vill tillåta */
        white-space: pre; /* gör att rader inte bryts → krävs för hor-scroll */
    }

.textarea-wrapperStoreMessage {
    /*max-height: 1500px;*/
    overflow-y: auto; /* vertikal scroll */
    overflow-x: auto; /* horisontell scroll */
}

    .textarea-wrapperStoreMessage textarea {
        height: auto;
        min-height: 300px;
        resize: none; /* eller vertical/horizontal/both om du vill tillåta */
        white-space: pre; /* gör att rader inte bryts → krävs för hor-scroll */
    }

/************************Analyslista***********************************************************/
/* --- Analyslista --- */
/* --- Analyslista 2.0 --- */
.analytic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .analytic-list li {
        position: relative;
        display: flex;
        align-items: center; /* gör att bullet och text centreras vertikalt */
        gap: 0.75rem; /* avstånd mellan bullet och text */
        padding: 14px 18px;
        font-size: 1.1rem;
        line-height: 1.5;
        color: #0f172a;
        border-top: 1px solid rgba(17, 24, 39, 0.06);
        transition: background 0.2s ease, transform 0.15s ease;
    }

        .analytic-list li:first-child {
            border-top: none;
        }

        /* Bullet = liten rund gradientprick */
        /*.analytic-list li::before {
            content: "";
            flex-shrink: 0;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #0d6efd, #6610f2);
            box-shadow: 0 0 6px rgba(13, 110, 253, 0.4);
        }*/
        .analytic-list li::before {
            content: "";
            flex-shrink: 0;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: linear-gradient(180deg, #47597E 0%, rgb(0, 0, 0) 80%);
            box-shadow: 0 0 6px rgba(71, 89, 126, 0.5); /* matchar din färg */
        }

/* Hover – lite "roligare" */
@media (hover: hover) {
    .analytic-list li:hover {
        background: rgba(13, 110, 253, 0.06);
        transform: translateX(2px);
    }
}

/**********************************************************************************************/

/*******************************Header******************************************/
.section-title {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: .5rem 0;
}

    /*.section-title::before,*/
    .section-title::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 3px;
        background-color: #0d3b66;
    }

    .section-title::before {
        top: 0; /* streck ovanför allt */
    }

    .section-title::after {
        bottom: 0; /* streck under allt */
    }

    .section-title h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        color: #0d3b66;
    }

    .section-title span {
        display: block;
        font-size: 1rem;
        color: #444;
        margin-top: 0rem;
    }

.subsection-title {
    position: relative;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    padding: .25rem 0;
}

    .subsection-title h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0;
        color: #0d3b66; /* samma färg som huvudrubrik men något lättare känsla */
    }

    .subsection-title span {
        display: block;
        font-size: 0.9rem;
        color: #666; /* lite ljusare än huvudrubrikens span */
        margin-top: 0.25rem;
    }

/*******************************************************************************/

/*******************************Chart*******************************************/
.chart-weekly-wrap {
    height: 200px;
    width: 100%;
    padding-top:1rem;
    position: relative;
}

    .chart-weekly-wrap canvas {
        width: 100% !important;
        height: 100% !important;
    }
/*******************************************************************************/

/***************************************KPI**************************************************************************/
:root {
    --kpi-surface: #fff; /*#ddecfd;*/ /* kortets kropp */
    --kpi-header-grad-start: #47597E;
    --kpi-header-grad-end: #000000;
    --kpi-border: #293b5f;
    --kpi-footer: #293b5f;
    --kpi-text: #0f172a;
    --kpi-muted: #6b7280; /* grå text */
    --kpi-shadow: 0 6px 14px rgba(17,24,39,.12);
    --kpi-radius: 14px;
    /* Typskalning */
    --kpi-highlight-lg: 2.2rem;
    --kpi-highlight-sm: 1.7rem;
}

/* Kort */
.kpi {
    background: var(--kpi-surface);
    border: 2px solid var(--kpi-border);
    border-top: 0;
    border-radius: var(--kpi-radius);
    overflow: hidden;
    box-shadow: var(--kpi-shadow);
    color: var(--kpi-text);
}

/* Header */
.kpi__header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .55rem .75rem;
    color: #d7d7d7;
    background-image: linear-gradient(180deg,var(--kpi-header-grad-start) 0%, var(--kpi-header-grad-end) 80%);
}

.kpi__title {
    font-weight: 700;
    letter-spacing: .04em;
}

/* Stängknapp i header */
.kpi__close {
    position: absolute;
    right: .45rem;
    top: .25rem;
    background: transparent;
    border: 0;
    color: #d7d7d7;
    cursor: pointer;
    font-size: 1.05rem;
}

    .kpi__close:hover {
        opacity: .9;
    }

/* Body */
.kpi__body {
    position: relative; /* krävs för absolut hint i body */
    padding: .9rem 1rem 1rem;
    display: grid;
    justify-items: center;
    gap: .4rem;
}

/* Hint-text i vita området, uppe till höger under headern */
.kpi__trend-hint-body {
    position: absolute;
    right: .6rem;
    top: .4rem;
    font-size: .7rem;
    color: var(--kpi-muted);
    pointer-events: none;
}

/* Pilen + fet siffra i rad */
.kpi__highlight-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-content: center;
    margin: .2rem 0 .35rem 0;
}

    .kpi__highlight-row i {
        font-size: 2rem;
        line-height: 1;
    }

/* Enbart highlight (vid PercentOfValueAndCompareValue) */
.kpi__highlight-only {
    display: flex;
    justify-content: center;
    margin: .2rem 0 .35rem 0;
}

/* Feta siffran */
.kpi__highlight {
    font-weight: 800;
    letter-spacing: .3px;
    text-align: center;
}

/* Storleksskala */
.kpi--large .kpi__highlight {
    font-size: var(--kpi-highlight-lg);
}

.kpi--small .kpi__highlight {
    font-size: var(--kpi-highlight-sm);
}

/* Current + jämförelse */
.kpi__current {
    font-weight: 600;
    text-align: center;
    margin-top: -1rem; /* trycker upp blocket lite */
    margin-bottom: 0; /* tar bort extra luft nedåt */
}

    .kpi__current .kpi__compare {
        color: var(--kpi-muted);
        margin-left: .3rem;
    }

/* Diff-rad */
.kpi__diff {
    font-weight: 600;
    color: #111827;
    font-size: .95rem;
    margin-top: -.5rem; /* ingen extra spacing uppåt */
}

    .kpi__diff .label {
        color: var(--kpi-muted);
        margin-right: .3rem;
    }

/* Footer */
.kpi__footer {
    font-size: .75rem;
    text-align: center;
    color: #d7d7d7;
    background: var(--kpi-footer);
    padding: .5rem .75rem;
}

/* Procent-footer (om KPIValueType != Decimal) */
.kpi--percent .kpi__footer {
    background-color: #47499e;
}

/* Hjälpklasser om du vill styra färg via klass i stället för inline */
.kpi--good .kpi__highlight {
    color: darkseagreen;
}

.kpi--bad .kpi__highlight {
    color: darkred;
}

.kpi--neutral .kpi__highlight {
    color: #b98c00;
}
/* svagt gul/orange */

/* Responsivt */
@media (max-width: 576px) {
    .kpi__body {
        padding: .75rem .75rem .9rem;
    }

    .kpi__highlight-row i {
        font-size: 1.7rem;
    }

    :root {
        --kpi-highlight-lg: 1.9rem;
        --kpi-highlight-sm: 1.5rem;
    }
}

 /***********************************Slut KPI***********************************************************************/

 /***********************************DUPontView***********************************************************************/
:root {
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
    --card-shadow: 0 6px 20px rgba(0,0,0,.06);
    --header-start: #47597E;
    --header-end: #0b1220;
    --text: #111827;
    --text-muted: #6b7280;
    --positive: #0e9f6e; /* grön */
    --negative: #b53737; /* röd */

    --chip-bg: #f3f4f6; /* ljus chip-bakgrund */
    --chip-text: #111827;
    --row-hover: #f9fafb;
    --row-zebra: #fafafa;
}

/* Kortet */
.duPontBox {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden; /* så headern rundas fint */
}

/* Header */
.duPontBoxHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background-image: linear-gradient(180deg,var(--header-start) 0%, var(--header-end) 90%);
    color: #fff;
}



.duPontBoxTitle {
    font-weight: 600;
    letter-spacing: .2px;
}

/* Tabell */
.duPontTable {
    margin: 0; /* nollställ bootstrap-marginal */
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--text);
    font-variant-numeric: tabular-nums; /* snygg kolumnjustering */
    padding-top: .3rem;
    padding-bottom: .3rem;
}

    .duPontTable tbody tr:nth-child(even) {
        background: var(--row-zebra);
    }

    .duPontTable tbody tr:hover {
        background: var(--row-hover);
    }

    .duPontTable td {
        white-space: nowrap;
        padding: 0px;
    }

.duPontDescriptionBox {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #ddecfd;
}

/* Celler */
.duPontTextCell {
    padding: 8px 10px;
    font-weight: 500;
    white-space:nowrap;
}

.duPontHeaderValue {
    text-align:right;
    white-space: nowrap;
}

.duPontValueCell {
    padding: 8px 10px;
    text-align: right;
    white-space: nowrap;
}

.duPontValueMain {
    font-weight: 600;
}

/* “Chips” för avvikelse */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--chip-bg);
    color: var(--chip-text);
    font-size: .9rem;
    line-height: 1;
    border: 1px solid var(--card-border);
}

.delta.positive {
    border-color: rgba(14,159,110,.25);
    color: var(--positive);
    background: rgba(14,159,110,.08);
}

.delta.negative {
    border-color: rgba(181,55,55,.25);
    color: var(--negative);
    background: rgba(181,55,55,.08);
}

.muted {
    color: var(--text-muted);
}

/* Input */
.duPontInput {
    width: 100%;
    text-align: right;
    padding: 6px 8px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

    .duPontInput:focus {
        border-color: #3b82f6; /* blå fokus */
        box-shadow: 0 0 0 3px rgba(59,130,246,.25);
    }

    /* Ta bort spinners (valfritt) */
    .duPontInput::-webkit-outer-spin-button,
    .duPontInput::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .duPontInput[type=number] {
        -moz-appearance: textfield;
    }

/****************************Slut duPointView******************************************************************************/


/****************************Dropdown-list******************************************************************************/




/* ---- Dropdown-knappen ---- */
.no-caret.dropdown-toggle::after {
    display: none;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Pil-ikon animation */
.dropdown .caret {
    transition: transform .2s ease;
}

.dropdown.show .caret {
    transform: rotate(180deg);
}

/* ---- Menyn ---- */
.dropdown-menu {
    border-radius: 12px;
    padding: .25rem;
    /*margin-top: .4rem;*/
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* Öppningsanimation */
.nice-menu {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
    transition: opacity .12s ease, transform .12s ease, box-shadow .12s ease;
}

.dropdown-menu.show.nice-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* ---- Listan (för single select) ---- */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: .25rem;
    margin: 0;
}

/* Gemensam radstil */
.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem .75rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background-color .12s ease, transform .08s ease;
    min-height: 40px;
}

    .menu-item:hover {
        background: #f3f4f6;
        transform: translateX(2px);
    }

    .menu-item.active {
        font-weight: 600;
        background: #eef2ff;
        position: relative;
    }

        .menu-item.active i.fa-check {
            color: #2563eb;
        }

/* Accent-bar för single select vald rad */
.menu-list .menu-item.active::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 2px;
    background: #2563eb33;
}

/* ---- Multi-select: riktiga checkboxes ---- */
.menu-item input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    accent-color: #2563eb;
    cursor: pointer;
}

.menu-item label {
    cursor: pointer;
}

/* ---- Täthetslägen ---- */
.menu-compact .menu-list {
    gap: .15rem;
}

.menu-compact .menu-item {
    padding: .45rem .6rem;
    min-height: 34px;
}

.menu-cozy .menu-list {
    gap: .35rem;
}

.menu-cozy .menu-item {
    padding: .6rem .7rem;
}

.menu-comfortable .menu-list {
    gap: .6rem;
}

.menu-comfortable .menu-item {
    padding: .75rem .85rem;
    min-height: 44px;
}

/* ---- Checkbox-dropdown (tabellvarianten) ---- */
.menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 .35rem; /* luft mellan rader */
}

    /* Header – funkar både i thead och om headern ligger i tbody med .contentListHeader */
    .menu-table thead th,
    .menu-table tbody .contentListHeader th {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #f8fafc;
        padding: .55rem .75rem;
        font-weight: 600;
        border-bottom: 1px solid #e5e7eb;
        background-clip: padding-box;
    }

        .menu-table thead tr th:first-child,
        .menu-table tbody .contentListHeader th:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .menu-table thead tr th:last-child,
        .menu-table tbody .contentListHeader th:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

    .menu-table thead,
    .menu-table tbody .contentListHeader {
        box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    }

    /* Rader */
    .menu-table tbody td {
        padding: .65rem .75rem;
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.03);
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .menu-table tbody tr td:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .menu-table tbody tr td:last-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    /* Hover som matchar single-selectens rader */
    .menu-table tbody tr:hover td {
        background: #f3f4f6 !important;
    }

    /* Aktiv (ikryssad) rad – matchar single-selectens highlight */
    .menu-table tbody tr:has(input[type="checkbox"]:checked) td {
        background: #eef2ff;
        font-weight: 600;
    }
        /* Accent-bar vänster på aktiva rader */
        /*.menu-table tbody tr:has(input[type="checkbox"]:checked) td:first-child {
            box-shadow: inset 3px 0 0 #2563eb33;
        }*/

    /* Checkboxar – mer luft + större klickyta */
    .menu-table input[type="checkbox"],
    .menu-table .form-check-input {
        width: 18px;
        height: 18px;
        margin: 2px auto; /* topp/botten-luft + centrerar */
        display: block;
        accent-color: #2563eb;
        cursor: pointer;
    }

    .menu-table td:first-child {
        padding-left: .5rem;
        padding-right: .5rem;
    }

/* Headerns “select all” centreras snyggt */
.contentListHeader th {
    vertical-align: middle;
}

/* ---- Dark mode ---- */
/*@media (prefers-color-scheme: dark) {
    .dropdown-menu {
        background: #0f172a;
        border-color: #23304a;
        box-shadow: 0 10px 28px rgba(0,0,0,.45);
    }

    .menu-item:hover {
        background: #111827;
    }

    .menu-item.active {
        background: #1e293b;
        color: #e5e7eb;
    }

    .menu-list .menu-item.active::before {
        background: #2563eb66;
    }

    .menu-table thead th,
    .menu-table tbody .contentListHeader th {
        background: #0f172a;
        border-bottom-color: #23304a;
    }

    .menu-table thead,
    .menu-table tbody .contentListHeader {
        box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }

    .menu-table tbody td {
        background: #0f172a;
        border-color: rgba(255,255,255,0.04);
    }

    .menu-table tbody tr:hover td {
        background: #111827;
    }

    .menu-table tbody tr:has(input[type="checkbox"]:checked) td {
        background: #1e293b;
        color: #e5e7eb;
    }

        .menu-table tbody tr:has(input[type="checkbox"]:checked) td:first-child {
            box-shadow: inset 3px 0 0 #2563eb66;
        }
}*/


.menu-table tbody tr.menu-row:hover {
    background-color: #f3f4f6; /* hoverfärg på hela raden */
    cursor: pointer;
}

.menu-table tbody tr.menu-row:has(input[type="checkbox"]:checked) {
    background-color: #eef2ff;
    font-weight: 600;
}













/****************************Slut Dropdown-list******************************************************************************/





/******************************Progress****************************************/
.bg-app,
.app-gradient {
    background: linear-gradient(180deg, #47597E 0%, #000 80%);
}

/* Dots-animationen */
.loading-dots span {
    display: inline-block;
    animation: ldots 1.4s infinite both;
}

    .loading-dots span:nth-child(2) {
        animation-delay: .2s;
    }

    .loading-dots span:nth-child(3) {
        animation-delay: .4s;
    }

@keyframes ldots {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}


/**************************Slut progress****************************************/

.pdf-export {
    margin-top: 2rem;
    background-color: white !important;
}

.pdf-page-break {
    page-break-before: always; /* för äldre standard */
    break-before: page; /* nyare standard */
}

/*.no-pdf {*/
/*display: none !important;*/
/*}*/

/*#aiAnalytic {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 8px;*/ /* så att text inte hamnar bakom scrollbaren */
/*box-sizing: border-box;
}*/

#aiAnalytic h1,
#aiAnalytic h2,
#aiAnalytic h3,
#aiAnalytic h4,
#aiAnalytic h5,
#aiAnalytic h6 {
    page-break-after: avoid;
    break-after: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

#aiAnalytic p,
#aiAnalytic ul,
#aiAnalytic ol,
#aiAnalytic li {
    page-break-inside: avoid;
    break-inside: avoid;
}

#aiAnalytic {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}


#aiAnalytic {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
}

    #aiAnalytic p:has(> strong:only-child) {
        page-break-after: avoid;
        break-after: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }

.only-pdf {
    display: none;
}

    .only-pdf.pdf-visible {
        display: block; /* eller inline/flex beroende på behov */
    }


/*.styled-checkbox {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    border-radius: 0.2em;
}*/

.styled-checkbox:checked {
    background-color: #0A1931;
    border-color: #0A1931;
}

.no-hover-outline:hover {
    background-color: transparent !important;
    color: #293B5F !important;
}

/*.styled-checkbox:checked::after {
            content: "";
            position: absolute;
            left: 0.35em;
            top: 0.1em;
            width: 0.25em;
            height: 0.5em;
            border: solid white;
            border-width: 0 0.2em 0.2em 0;
            transform: rotate(45deg);
        }*/

.warmup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); /* mörk och genomskinlig */
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warmup-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 90%;
}

.duPontAccount-table td {
    white-space: nowrap;
}

.duPontBG {
    /*background: url('../Images/BG DuPont 3.png') no-repeat center center;
    background-size: 100% 100%;*/
}

.duPontBox {
    width: 100%;
    border: 1px solid black !important;
    background-color: #fff !important;
    padding: 0px !important;
}

.duPontBoxHeader {
    width: 100%;
    text-align: center;
    background-image: linear-gradient(180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
}

.duPontValueCell {
    text-align: right;
    padding-right: 1px !important;
}

.duPontTextCell {
    text-align: Left;
    padding-left: 5px !important;
}

.accountSectionSum {
    background-color: #0A1931;
    color: #fff !important;
    font-weight: 900;
}

    .accountSectionSum td {
        padding: 4px;
    }

.accountRow {
    background-color: #fff;
    color: #000;
}

    .accountRow td {
        padding: 4px;
    }



.earningsRow {
    background-color: #fff;
    color: #000;
    font-weight: 900;
}

    .earningsRow td {
        padding: 4px;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }

.PriceCalculationTablePadding {
    padding: .2rem;
    vertical-align: top;
}



.max-height-scroll-500 {
    max-height: 500px;
    overflow-y: auto;
}

.tableBorderPriceManagement {
    border: 1px solid lightgray;
    padding: 8px;
}

.disabled-link {
    pointer-events: none;
    color: gray;
    text-decoration: none;
}

.BGColorDisabledLink {
    background-color: gray;
}

/*Används i receipt för att ändra färg*/
.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.prefix {
    position: absolute;
    left: 10px;
    font-size: 1rem;
    color: #555;
}

.input-field {
    padding-left: 20px; /* Justera för att skapa utrymme för prefixet */
    background-color: white;
    border: 1px solid #ccc;
    font-size: 1.25rem;
    width: 100px;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgray;
    border: 2px solid black;
}

.image-container-Clean {
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block; /* För att ta bort eventuellt mellanrum under bilden */
}

.tableLittlePadding td {
    padding: 3px;
}

.tableCellNumericContent {
    text-align: right;
}

.componentBackground {
    background-image: linear-gradient( 180deg, #ddecfd 0%, rgb(255, 255, 255) 80%);
}

.modalBackground {
    background-image: linear-gradient( 1800deg, #ddecfd 0%, rgb(255, 255, 255) 80%);
}

.ddlBackground {
    background-image: linear-gradient( 180deg, #ddecfd 0%, rgb(255, 255, 255) 80%);
}

.ddlHeaderBackground {
    background-color: #abc4e9;
    border-bottom: 2px #000 solid;
}

.ddlHeaderTH {
    padding: 2px !important;
}

.shadowProfit {
    /*rgba(229, 63, 5, 1)*/
    /*box-shadow: 0 .5rem 1rem rgba(229, 63, 5,.15) !important;
    background-color: #ddecfd;*/
}

.nav-link {
    color: #fff;
}

.activeTab {
    color: #000;
    background-color: #ddecfd !important;
    border-color: #47597E #47597E #fff;
}

/*Min kod*/
/*Print a4*/
.page {
    width: 21cm;
    min-height: 29.7cm;
    /*padding: 2cm;*/
    /*margin: 1cm auto;*/
    border: 1px #D3D3D3 solid;
    border-radius: 5px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@page {
    size: A4;
    margin: 0;
}

.pageHeader {
    /*font-family: "PageFont";*/
    font-weight: 700;
    font-size: 1.5rem;
    color: #e53f05;
}


.recipeHeader {
    font-family: 'Permanent Marker', cursive;
    color: #311;
    font-size: 25px;
    font-weight: 700;
}

.recipeBread {
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    font-weight: 200;
}

.textForm {
    font-size: 1rem;
    vertical-align: middle;
}

.ErningsRowHighlight {
    font-size: 1.25rem;
}


/*#7c3917 rubrik bg
    #270f04 mörk
    #eeeeee sektionBG
*/

.menuLinkHuge {
    width: 100%;
    border: 1px solid #47597E;
}

.tableFixHead {
    overflow: auto;
    height: 20em;
}

    .tableFixHead thead th {
        position: sticky;
        top: 0;
        z-index: 10;
    }

/*Ändra bootstrap*/


.tabArea {
    border-left: 1px solid #47597E !important;
    border-right: 1px solid #47597E !important;
    border-bottom: 1px solid #47597E !important;
}

.nav-tabs {
    border-bottom: 1px solid #47597E;
}

/* .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: #495057;
        background-color: transparent !important;
        border-color: #47597E #47597E #fff;
    }*/

.nav-link:focus, .nav-link:hover {
    color: #fff;
}

.activeTab.nav-link:hover {
    color: #000;
}


/*.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
        border-color: #47597E #47597E #fff;
        isolation: isolate;
    }*/

.modal-header {
    padding: .2rem 1rem;
}

.standardControl {
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
}

.standardControlInvert {
    background-image: linear-gradient(0deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
}

.standardBorder {
    border: 1px solid #47597E;
}

.borderRoundedEdgesLeft {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0rem;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0rem;
}

.borderRoundedEdgesRight {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0rem;
    border-bottom-right-radius: 0.25rem;
}

.btn-primary {
    /*background-color: #293B5F;*/
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    border-color: #222222;
}

.btn-outline-primary {
    color: #293B5F;
    border-color: #293B5F;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #000;
        border-color: #000;
    }

.btn-check:focus + .btn-primary, .btn-primary:focus {
    /*color: #293B5F;*/
    background-color: #293B5F;
    border-color: #222222;
    box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
}

.btn-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

a {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

/*Slut Ändra bootstrap*/
h1 {
    color: #fff;
}

/*Login*/
.site-background {
    /*background: url('../Images/Analysbild mindre.png') no-repeat center center fixed;*/
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-image: linear-gradient(0deg, #47597E 0%, rgb(0, 0, 0) 80%);
}

.site-backgroundImage {
    background: url('../Images/Analysbild mindre.png') no-repeat center center fixed;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    /*background-image: linear-gradient(0deg, #47597E 0%, rgb(0, 0, 0) 80%);*/
}

.scrollVerticalMedium {
    height: 250px;
    overflow-y: scroll;
}

.img-logo {
}

.form-container {
    top: 15vh;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #d5652c;
}
/*SlutLogin*/

/*Budget*/
.budgetInputControl {
    height: 25px;
}

/*Slut Budget*/

.sidebarLogo {
    width: 200px;
    height: 100%;
}

hr {
    border: 1px solid #7c3917;
}

body {
    background-color: #AAA; /*#270f04;*/
}

/*General*/

.product-image-container {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 999;
    width: 150px;
    height: 150px;
    background-color: white;
    padding: 5px;
    border: 1px solid black;
    border-radius: 5px;
}

.inputSmall {
    padding: 0px;
    font-size: .75rem;
}


.KPIBorder {
    border: 3px solid #293b5f;
    border-top: 0;
    /*border-color: #293b5f;
    border-width: thick;
    border-style: solid;*/
}

.KPIHeader {
    color: #d7d7d7;
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
}

.KPIFooter {
    color: #d7d7d7;
    background-color: #293b5f;
}

/*Fuling för att ha samma höjd*/
.KPIFooterPercent {
    color: #d7d7d7;
    background-color: #47499e;
    /*background-color: #293b5f;*/
}

.boxStyle {
    background-color: #fff;
    border: 1px solid #232323;
}

.dropDownPadding {
    padding: .35rem !important;
}

.customListStickyColumn {
    position: sticky;
    left: 0px;
    background-color: inherit !important;
    z-index: 2;
}

.stickyColumnExpand {
    position: sticky;
    left: 0px;
    background-color: inherit !important;
    z-index: 2;
    width: 29px;
}

.stickyColumnCheckbox {
    position: sticky;
    left: 28px;
    background-color: inherit !important;
    z-index: 2;
    width: 29px;
}

.stickyColumnName {
    position: sticky;
    left: 52px;
    background-color: inherit !important;
    z-index: 2;
    
}




.customListStickyIconColumn {
    position: sticky;
    left: 0px;
    background-color: inherit !important;
}

/*th:first-child, td:first-child {
    position: sticky;
    left: 0px;
    background-color: inherit;
}*/

.clickIcon {
    color: #0A1931;
}

.emptyRowHight {
    height: 26px;
}

.clickIcon-disabled {
    pointer-events: none;
    opacity: .2;
}

.clickIcon-disabled-clickable {
    cursor: pointer;
    opacity: .2;
}

.table > :not(caption) > * > * {
    border-bottom-width: 0px;
}

/*TreeView*/
ul, #myUL {
    list-style-type: none;
    padding-left: 0.5rem;
}

.indentTreeViewItemWithNoChilds {
    padding-left: 1.3rem;
}

#myUL {
    margin: 0;
    padding: 0;
}

.box {
    cursor: pointer;
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

    .box::before {
        content: "\2610";
        color: black;
        display: inline-block;
        margin-right: 6px;
    }

.check-box::before {
    content: "\2611";
    color: dodgerblue;
}

.nested {
    display: none;
}

.active {
    display: block;
}

.dropDownMenuBox {
    position: absolute;
    z-index: 100;
    background-color: #eee;
    border: 1px solid #232323;
    right: 5px;
}

/*.dropDownMenuRow:hover {
    background-color:aliceblue;
}*/
/*Slut TreeView*/

/*ContentList*/

.customListSettingsBox {
    position: absolute;
    z-index: 100;
    background-color: #eee;
    border: 1px solid #232323; /*#7c3917*/
    height: 270px;
    width: 250px;
}

.customListSettingsBoxHeader {
    /*background-color: #47597E;*/ /*#7c3917*/
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
}

.customListSettingsBoxUL {
    overflow-y: auto;
    height: 190px;
    margin-bottom: 5px;
}

.highlightRowOnHover:hover {
    background-color: lightgray;
}

.customListStickyHeader {
    position: sticky;
    z-index: 10;
    top: 0;
}

/*Väntar med den här*/
.customListStickyColumn {
    /*position: sticky;
    z-index: 9;
    left: 0px;*/
}

.selectedTableRow {
    background-color: lightgray;
}

.customerListTable {
    font-size: 0.8rem;
    border: 0px;
}

.contentListHeader {
    background-color: #222222;
    color: #d7d7d7;
}

.contentListHeaderSumRow {
    background-color: #0A1931;
    color: #d7d7d7;
}

.hierachyRowLevel-1 {
    font-weight: 900;
    background-color: #293B5F !important;
    color: #d7d7d7 !important;
}

.hierachyRowLevel-2 {
    font-weight: 600;
    background-color: #47597E !important;
    color: #d7d7d7 !important;
}

.hierachyRowLevel-3 {
    font-weight: 600;
    color: #d7d7d7 !important;
    background-color: #7080a0;
}

.hierachyRowLevel-4 {
    font-weight: 600;
    background-color: #ddecfd;
}

.hierachyRowLeaf {
    /*font-weight: 500;*/
    background-color: #fff;
    color: #111;
}

    .hierachyRowLeaf td {
        padding-top: 2px;
        padding-bottom: 2px;        
    }

    .hierachyRowLeafRowSelected {
        font-weight: 700;
    }

.hierachyLevel-Leavses {
    /*background-color: #DBE6FD;*/
}

/*Slut ContentList*/
/*Tab*/
.tabArea {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

/*Slut Tab*/

/*KPI Area*/
.KPI-Header-Large {
    font-size: 1.2rem;
    font-weight: 600;
}

.KPI-Header-Small {
    font-size: 1rem;
    font-weight: 600;
}

.KPI-Diff-Large {
    font-size: 0.9rem;
    font-weight: 600;
}

.KPI-Diff-Small {
    font-size: 0.75rem;
    font-weight: 600;
}

.KPI-Highligted-Large {
    font-size: 2rem;
    font-weight: 700;
}

.KPI-Highligted-Small {
    font-size: 1.5rem;
    font-weight: 700;
}

.KPIValueGreen {
    color: darkseagreen;
}

.KPIValueRed {
    color: darkred;
}


/*Sub Section*/
.subSectionBorder {
    /*border: 1px solid #232323;*/ /*#7c3917*/
}

.subSectionSubHeader {
    /*background-color: lightgray;*/ /*#232323;*/ /*#7c3917*/
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
    font-weight: bold;
    font-size: .9rem;
}

.showSubSection {
    /*#ddecfd*/
    /*background-color: #eee;*/
    /*background-color: #ddecfd;*/
}

.hideSubSection {
    display: none;
}

/*Section*/

.sectionContentHeader {
    color: #293b5f;
    font-size: 2rem;
    font-weight: 700;
}

.sectionHeader {
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
}

.sectionHeader-General {
    background-image: linear-gradient( 180deg, #47597E 0%, rgb(0, 0, 0) 80%);
    color: white;
    font-weight: bold;
}

.sectionHeader-WorkedHours {
    background-image: linear-gradient( 0deg, #000 50%, rgb(128, 0, 32) 99%);
    color: white;
    font-weight: bold;
}

.sectionHeader-Sales {
    background-image: linear-gradient( 0deg, #000 50%, rgb(128, 0, 128) 99%);
    color: white;
    font-weight: bold;
}

.sectionHeader-Marg {
    background-image: linear-gradient( 0deg, #000 50%, rgb(0, 100, 0) 99%);
    color: white;
    font-weight: bold;
}

.sectionHeader-Waste {
    background-image: linear-gradient( 0deg, #000 50%, rgb(255, 0, 0) 99%);
    color: white;
    font-weight: bold;
}

.sectionHeader-Customer {
    background-image: linear-gradient( 0deg, #000 50%, rgb(255, 165, 0) 99%);
    color: white;
    font-weight: bold;
}

.sectionList-General {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: black;
}

.sectionList-WorkedHours {
    background-color: rgba(128, 0, 32, 0.1) !important;
    color: black;
}

.sectionList-Sales {
    background-color: rgba(128, 0, 128, 0.1) !important;
    color: black;
}

.sectionList-Marg {
    background-color: rgba(0, 100, 0, 0.1) !important;
    color: black;
}

.sectionList-Waste {
    background-color: rgba(255, 0, 0, 0.1) !important;
    color: black;
}

.sectionList-Customer {
    background-color: rgba(255, 165, 0, 0.1) !important;
    color: black;
}


.sectionHeaderText {
    color: white;
}

.showSection {
    /*#ddecfd*/
    /*background-color: #eee;*/
    /*background-color: #ddecfd;*/
    background-image: linear-gradient( 180deg, #ddecfd 0%, rgb(255, 255, 255) 80%);
}

.showSectionInvertedBG {
    /*#ddecfd*/
    /*background-color: #eee;*/
    /*background-color: #ddecfd;*/
    background-image: linear-gradient( 0deg, #ddecfd 0%, rgb(255, 255, 255) 80%);
}

.hideSection {
    display: none;
}

.sectionMousePointer {
    cursor: pointer;
    color: white;
}



    .sectionMousePointer:hover {
        color: white;
    }

/*Slut Section*/

/*Slut Min kod*/




/*a, .btn-link {
    color: #0366d6;
}*/

/*.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}*/

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar {
    /*background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, #d5652c 70%);*/
    background-image: linear-gradient(180deg, #47597E 0%, rgb(0, 0, 0) 90%);
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

.content {
    padding-top: .5rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

/*.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}*/
/*
.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}*/

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*@media (max-width: 767.98px) {*/
.main .top-row:not(.auth) {
    display: none;
}

.main .top-row.auth {
    justify-content: space-between;
}

.main .top-row a, .main .top-row .btn-link {
    margin-left: 0;
}
/*}*/


.nav-link {
    padding: .5rem;
    font-size: .75rem;
}

.chartMarginSides {
    padding-top: 10px;
}

.weatherSmallText {
    font-size: .5rem;
}

.weahterIcon {
    font-size: 1rem;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
}

    .custom-checkbox-label input {
        margin-right: 8px; /* Ger lite avstånd mellan checkbox och text */
    }


@media (min-width: 768px) {

    .weatherSmallText {
        font-size: 1rem;
    }

    .weahterIcon {
        font-size: 1.5rem;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1rem;
    }

    .chartMarginSides {
        /*rgba(229, 63, 5, 1)*/
        /*box-shadow: 0 .5rem 1rem rgba(229, 63, 5,.15) !important;
        background-color: #ddecfd;*/
        /*margin-left: 40px;
        margin-right: 40px;*/
        /*margin-bottom: 40px;*/
        padding: 10px;
    }

    .chartMarginBottom {
        margin-bottom: 40px;
    }

    .chart {
        /*padding: 10px;*/
        /*background-color: #ddecfd;*/
        background-color: #ddecfd;
    }

    .shadowProfit {
        /*rgba(229, 63, 5, 1)*/
        /*box-shadow: 0 .5rem 1rem rgba(229, 63, 5,.15) !important;*/
        box-shadow: 0 .5rem 1rem rgba(90, 90, 90,.15) !important;
        /*background-color: #ddecfd;        */
    }


    /*app {
        flex-direction: row;
    }*/

    /*Mina ärndringar*/
    /*.sidebarLogo {
        width: 100%;
        height: auto;
    }*/

    /*Slut mina ändringar*/

    /*.sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {*/
    /* Never collapse the sidebar for wide screens */
    /*display: block;
    }*/
}

@media screen {
    .customListContainer {
        /*max-height: 600px;*/
        max-height: calc(100vh - 3%);
    }

    .customListContainerVirtualize {
        max-height: 600px;
        /*max-height: calc(100vh - 3%);*/
    }
}
