/*/// General ///*/
:root {
    --my-blue: #0366d6;
    --my-green: #86B391;
}

html,
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

a,
.btn-link {
    color: var(--my-blue);
}

.stdTxt {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    font-size: medium !important;
}

h1,
h2,
h3 {
    color: var(--my-blue) !important;
    padding-bottom: 1.1rem;
}

h4 {
    color: var(--my-blue) !important;
    margin-top: 15px;
    margin-bottom: 15px;
}

.hSub {
    color: darkgray !important;
    font-size: large !important;
    margin-top: 15px;
    margin-bottom: 15px;
}

label {
    margin-bottom: 4px !important;
}

.btn-primary,
.e-btn {
    color: black;
    background-color: #D3D3D3;
    border-color: var(--my-blue);
}

a.button:hover,
.e-btn:hover,
.e-btn:active,
.e-btn:focus,
.e-btn:checked {
    cursor: pointer;
    color: white;
    background-color: var(--my-blue) !important;
}

.e-btn-icon.e-icons.e-check .e-btn-icon.e-icon-left:before {
    content: '\e7ff';
}

.e-btn-icon.e-icons.e-close .e-btn-icon.e-icon-left:before {
    content: '\e7fc';
}


i {
    margin-right: 10px;
    margin-left: 0px;
}

.green {
    color: var(--my-green) !important;
}

.red {
    color: red !important;
}

.orange {
    color: orange !important;
}

.yellow {
    color: yellow !important;
}

.blue {
    color: var(--my-blue) !important;
}

.bgGrey {
    background-color: #cccccc;
}

.bgDialog {
    background-color: #f2f2f2;
}

.fLarge {
    font-size: large !important;
}

.bigger {
    font-size: 125%;
}

.content {
    padding: 0.5rem 1.2rem 0.5rem 1.2rem;
}

.mainContent {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    padding: 0.5rem 1.2rem 0.5rem 1.2rem;
    height: calc(100vh - 80px);
}

.scrollContent {
    height: calc(100vh - 200px);
}

.inline {
    display: inline-flex;
    vertical-align: middle !important;
}

.vcenter {
    vertical-align: middle !important;
    align-items: center !important;
}

.subtitle {
    color: darkblue;
    background-color: lightgray !important;
    border-bottom: solid;
    border-bottom-color: darkred;
    border-bottom-width: 3px;
    padding: 10px;
    margin-top: 2rem;
    font-size: large;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.outer {
    display: grid;
    grid-template: 1fr / 1fr;
}

.outer > * {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.outer .stack-bottom {
    top: 0;
    left: 0;
    z-index: 8;
}

.outer .stack-top {
    margin-top: 20px;
    margin-left: 10px;
    width: 50px;
    height: 50px;
    z-index: 9;
}

.imgCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    padding: 30px;
}

.errHead {
    padding: 20px;
    font-size: xx-large;
    color: red;
}

.errImg {
    margin: 20px;
    width: 30vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.errTxt {
    padding: 20px;
    font-size: larger;
    line-height: 1.2em;
}

#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;
}

.LoginView {
    float: right;
    line-height: 1.0;
    text-align: right;
}

.hideMobile {
    visibility: visible;
    display: inline;
}

@media only screen and (max-width: 768px) {
    .hideMobile {
        visibility: hidden;
        height: 1px;
    }
}

/** Login Dialog **/
.login-box {
    height: 100%;
    margin-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 400px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.login-container > img {
    margin-bottom: 30px;
}

.login-title {
    position: absolute;
    top: 0px;
    right: 5%;
    transform: translateX(0%);
    margin-top: 10px; /* Adjust margin as needed */
    text-align: right;
    font-size: 36px !important;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: normal;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-group input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

.form-group input[type="submit"]:hover {
    background-color: #0056b3;
}


/*/// SF Datagrid ///*/
.e-headercell {
    color: white !important;
    background-color: darkred !important;
    border-left: 1px solid !important;
    border-left-color: white !important;
}

.bgBlue {
    background-color: var(--my-blue) !important;
}

.e-headertext {
    color: white !important;
}

.e-headercelldiv {
    vertical-align: middle !important;
    display: table-cell !important;
    line-height: 100% !important;
    white-space: normal !important;
}

.e-grid .e-altrow {
    background-color: #fafafa !important;
}

.e-grid .e-selectionbackground {
    background-color: #E3E3C1 !important;
}

.e-grid .e-gridcontent .e-groupcaption {
    background-color: #CBE1E3 !important;
}

.s-rowcell {
    vertical-align: middle !important;
    display: table-cell !important;
    line-height: 100% !important;
    white-space: normal !important;
    padding-left: 2px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.s-rowcell-right {
    text-align: right !important;
    vertical-align: middle !important;
    display: table-cell !important;
    line-height: 100% !important;
    white-space: normal !important;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.s-rowcell-center {
    text-align: center !important;
    vertical-align: middle !important;
    display: table-cell !important;
    line-height: 100% !important;
    white-space: normal !important;
    padding-right: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.s-num {
    font-family: monospace;
}

.s-result {
    font-weight: bold;
    font-size: larger;
}

.s-hr {
    border-bottom: solid;
    border-bottom-width: 1px;
}

.s-dr {
    border-bottom: double;
}

.s-tr {
    border-bottom: solid;
    border-bottom-width: 3px;
}


/*/// SF Toast Message ///*/
.e-toast-container .e-toast .e-toast-message .e-toast-title {
    color: darkblue;
    font-size: larger;
    font-weight: bold;
}

.e-toast-container .e-toast .e-toast-message .e-toast-content {
    color: black;
    font-size: medium;
    font-weight: normal;
}

.e-toast-container .e-toast .e-toast-icon {
    color: darkred;
    font-size: 2em;
}

.e-toast-container .e-toast {
    background-color: lightgrey;
}


/*/// Index table format ///*/
.tg {
    border-collapse: collapse;
    border-color: #9ABAD9;
    border-spacing: 0;
}

.tg td {
    background-color: #EBF5FF;
    border-color: #9ABAD9;
    border-style: solid;
    border-width: 1px;
    color: #444;
    /*font-family: Arial, sans-serif;*/
    /*        overflow: hidden;*/
    padding: 10px 5px;
    word-break: normal;
}

.tg th {
    background-color: var(--my-blue);
    border-color: #9ABAD9;
    border-style: solid;
    border-width: 1px;
    font-size: 14px;
    color: #fff;
    /*        overflow: hidden;*/
    padding: 10px 5px;
    word-break: normal;
    position: sticky;
    width: 30%;
}

.tg .tg-0lax {
    text-align: left;
    vertical-align: top
}

.dlgTable {
    display: inline-block;
    font-size: small;
    width: 100%;
    height: 250px;
    overflow: auto !important;
}

/**Bookings Grid definitions**/
.gridWrap {
    display: grid;
    grid-template-columns: 100px 600px;
    grid-gap: 10px;
}

.gridTopL {
    height: 50px;
    margin: -10px;
}

.gridBox {
    background-color: #f0efe4;
    border-radius: 5px;
    padding: 20px;
}

.gridDetailWrap {
    display: grid;
    grid-template-columns: min-content 30% min-content auto;
    grid-gap: 5px;
}

.gridDetailBox {
    overflow-wrap: break-word;
}

.tableGridWrap {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 5px;
}


/**Bookings Grid Mobile **/
@media only screen and (max-width: 768px) {
    .gridWrap {
        display: grid;
        grid-template-columns: 0 100%;
        grid-gap: 0;
        font-size: 0.9em;
    }

    .gridTopL {
        height: 50px;
        margin: -10px;
    }

    .gridBox {
        background-color: #f0efe4;
        border-radius: 5px;
        padding: 5px;
        /*        display: contents;*/
    }

    .gridDetailWrap {
        display: grid;
        grid-template-columns: 35% auto;
        grid-gap: 5px;
    }

    .gridDetailBox {
        overflow-wrap: break-word;
        margin-right: 10px;
    }

    .h-4 {
        font-size: 1.2em
    }

    .h-5 {
        font-size: 1.2em
    }
}


/***Edit Form FlexGrid*/
.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-item-left {
    background-color: #f1f1f1;
    padding: 10px;
    flex: 50%;
}

.flex-item-right {
    background-color: dodgerblue;
    padding: 10px;
    flex: 50%;
}

@media (max-width: 768px) {

    .flex-item-right,
    .flex-item-left {
        flex: 100%;
    }
}

.gridHead {
    display: flex;
    justify-content: space-between;
    grid-template-columns: max-content auto;
    grid-column-gap: 50px;
}

@media (max-width: 768px) {
    .gridHead {
        display: block;
        grid-template-columns: auto;
        grid-column-gap: 20px;
    }
}

.gridSet {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 40px;
    grid-row-gap: 25px;
}

.gridSetDetail {
    display: grid;
    grid-template-columns: max-content auto max-content auto max-content auto;
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    line-height: 120%;
}

.gridSet-span0 {
    grid-column: 1 / 5;
}

.gridSet-span1 {
    grid-column: 1 / 3;
}

.gridSet-span2 {
    grid-column: 3 / 5;
}

.gridForm {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 40px;
    grid-row-gap: 15px;
}

.gridForm-span {
    grid-column: 1 / 3;
}

.gridCol {
    background-color: #f0efe4;
    border-radius: 5px;
    padding: 20px;
}

.tab_Content {
    width: 100%;
    height: calc(100vh - 130px);
    padding: 1em;
    background-color: white;
}

.e-dlg-content {
    overflow: inherit !important;
    overflow-x: inherit !important;
}

.dlgTitle {
    font-size: 1.4em;
    color: var(--my-blue);
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

.dlgImport {
    height: fit-content;
    overflow: visible;
}

.e-dialog,
.e-footer-content {
    border: medium lightblue !important;
    background-color: #f2f2f2 !important;
}


.headButtons {
    margin-top: 3px;
}

.dateBtn {
    color: var(--my-blue) !important;
    padding: 4px !important;
    border: none;
    background-color: transparent;
}

.dateBtn:hover {
    color: white !important;
}

.editBtnDiv {
    grid-row: 1 / 6;
    text-align: center !important;
    vertical-align: middle !important;
    font-size: x-large !important;
}

.editBtn {
    color: var(--my-blue) !important;
    padding: 2px !important;
    border: none !important;
    background-color: transparent;
    font-size: large !important;
}

.editBtn:hover {
    color: white !important;
}

.cardText {
    margin-top: 10px;
}

.h-4 {
    color: var(--my-blue) !important;
    display: inline;
    font-weight: bold;
    font-size: 1.5em !important;
}

.h-5 {
    color: darkgray !important;
    display: inline;
    font-weight: normal;
    font-size: 1.5em;
}

.h-4in {
    color: var(--my-blue) !important;
    /*    display: inline;*/
    margin-top: 0.5em;
    margin-bottom: 0.5em !important;
    font-weight: normal;
    font-size: 1.5em;
}

.h-4insmall {
    color: var(--my-blue) !important;
    /*    display: inline;*/
    margin-top: 0.5em;
    margin-bottom: 0.5em !important;
    font-weight: normal;
    font-size: 1.3em;
    padding-left: 10px;
}

.h-5in {
    color: black !important;
    /*    display: inline;*/
    margin-top: 0.5em;
    margin-bottom: 0.5em !important;
    font-weight: normal;
    font-size: medium;
    padding-left: 10px;
}

.right {
    justify-self: flex-end !important;
}

.btnDiv {
    display: flex;
}

.setRight {
    margin-left: auto;
    margin-right: 0;
}

.e-delBtn :hover {
    background-color: red !important;
}

.h-6 {
    color: darkgray !important;
    display: inline;
    font-weight: normal;
    font-size: larger;
}

.cancel {
    color: darkgray !important;
    text-decoration: line-through;
    font-weight: normal !important;
}

.outer {
    display: grid;
    grid-template: 1fr / 1fr;
}

.outer > * {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

.outer .stack-bottom {
    top: 0;
    left: 0;
    z-index: 8;
}

.outer .stack-top {
    justify-self: end;
    margin-top: 20px;
    margin-right: 50px;
    width: 50px;
    height: 50px;
    z-index: 9;
}

.dlgTarget {
    justify-self: center;
    margin-top: 20px;
    visibility: hidden;
    position: fixed;
}

/* Custom color Switch */
.e-switch-wrapper.bar-color .e-switch-inner.e-switch-active,
.e-switch-wrapper.bar-color:hover .e-switch-inner.e-switch-active .e-switch-on {
    background-color: #4d841d !important;
    border-color: #4d841d !important;
    color: white;
}

.e-switch-wrapper.bar-color .e-switch-inner.e-switch-active,
.e-switch-wrapper.bar-color .e-switch-inner.e-switch-active .e-switch-on {
    background-color: #4d841d !important;
    border-color: #4d841d !important;
    color: white;
}

.e-switch-wrapper.bar-color .e-switch-inner,
.e-switch-wrapper.bar-color .e-switch-off {
    background-color: #bbb !important;
    border-color: #bbb !important;
    color: white;
}

.e-switch-wrapper.bar-color .e-switch-handle {
    background-color: #fff;
}


/*Dashboard Styles*/
.e-dashboardlayout {
    padding: 10px;
}

.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
    align-items: center;
    line-height: 40px;
    height: 56px;
    color: var(--my-blue);
}


.fluent .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header,
.fluent-dark .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
    height: 56px;
}

.bootstrap5 .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header,
.bootstrap5-dark .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header,
.tailwind .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header,
.fluent .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header,
.fluent-dark .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header,
.tailwind-dark .e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
    line-height: inherit;
}

.root-container {
    height: 100%;
}

.title {
    font-size: larger;
    font-weight: 400;
}

.category-text {
    float: left;
    line-height: 30px;
}

.category-icon {
    float: left;
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: 100%;
    height: 30px;
    width: 30px;
    display: inline-block;
    margin-right: 10px;
}


.item-container {
    display: flex;
    text-align: center;
    height: 70%;
    padding: 2rem;
    font-size: 1.8em;
    font-weight: 400;
}

.item-container.income {
    color: #17a00e
}

.item-container.bookings {
    color: #008cff;
}

.item-container.transaction {
    color: #f41127;
}

.item-container.expense {
    color: #ca765a;
}

.gaugebox-container {
    height: auto;
    width: 100%;
}

.gauge-container {
    margin-bottom: 20px;
    background-color: transparent;
    text-align: center;
}

.bottom-container {
    text-align: center;
    font-weight: 400;
    font-size: 1.5em;
}

.gauge-bottom {
    text-align: center;
    font-weight: 400;
    font-size: 1.5em;
    position: absolute;
    padding-top: 1em;
    bottom: 10px;
    width: 100%;
}

.mobile .bottom-container {
    font-size: 1.5em;
}

.material .bottom-container,
.fabric .bottom-container,
.bootstrap .bottom-container,
.bootstrap4 .bottom-container,
.tailwind .bottom-container,
.bootstrap5 .bottom-container {
    color: #4c5258;
}

.amt-payment.expense-payment {
    font-weight: bold;
    color: #ff5e65;
}

.amt-payment.income-payment {
    font-weight: bold;
    color: #04cd93;
}

.auto-left {
    margin-left: auto;
}

.e-panel-cotent {
    padding: 1rem;
}

.bookings:after {
    content: "\f0ae";
    font-size: 1.2em;
    font-family: "Font Awesome 6 Pro", emoji;
}

.expense:after {
    content: "\e901";
    font-size: 1.2em;
    font-family: "e-sb-icons", emoji;
}

.income:after {
    content: "\e902";
    font-size: 1.2em;
    font-family: "e-sb-icons", emoji;
}

.profit:after {
    content: "\f81d";
    font-size: 1.2em;
    font-family: "Font Awesome 6 Pro", emoji;
}

.e-headercelldiv span.e-headertext {
    font-size: 14px;
    font-weight: 500;
}

.e-grid .e-rowcell {
    font-size: 13px;
}

.mobile .e-control.e-lib.e-dashboardlayout.e-responsive {
    z-index: 0;
    overflow: scroll;
}

.mobile .item-container {
    padding: 40px;
    font-size: 40px;
}

.mobile .bookings:after {
    content: "\f0ae";
    font-size: 40px;
    font-family: "Font Awesome 6 Pro", emoji;
}

.mobile .expense:after {
    content: "\e901";
    font-size: 40px;
    font-family: "e-sb-icons", emoji;
}

.mobile .income:after {
    content: "\e902";
    font-size: 40px;
    font-family: "e-sb-icons", emoji;
}

.mobile .profit:after {
    content: "\f81d";
    font-size: 40px;
    font-family: "Font Awesome 6 Pro", emoji;
}

.e-control.e-lib.e-dashboardlayout.e-responsive {
    z-index: 0;
}

.e-dashboardlayout.e-control .e-panel .e-panel-container .e-grid.sf-grid .e-gridcontent .e-content.e-yscroll {
    overflow: auto;
}

@media only screen and (max-width: 768px) {
    .e-dashboardlayout {
        height: fit-content !important;
    }

    .e-panel-content {
        height: auto !important;
    }

    .e-panel {
        height: auto !important;
        position: relative !important;
        top: unset !important;
    }

    h2 {
        font-size: 2em;
    }

    .h-4in {
        color: var(--my-blue) !important;
        margin-top: 0.2em;
        margin-bottom: 0.2em !important;
        font-weight: normal;
        font-size: 1.3em;
    }
}

body.tailwind-dark .e-dashboardlayout.e-control .e-panel {
    border: 1px #435266 solid;
}

.e-gridheader {
    padding-right: 0 !important;
}

/*+++++++++++++++++++++++++*/
/*_Notes & Actions section_*/
/*+++++++++++++++++++++++++*/
.notesWrap {
    display: flex;
    flex-direction: column;
    /*    height: 65vh;*/
}

.notesGrid {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-gap: 10px;
    flex: 1;
    height: 100%;
}

/*### Message List Styling_*/
#list {
    box-shadow: 0 1px 4px #ddd;
    border-bottom: 1px solid #ddd;
    width: 100% !important;
}

#notesMobileWrap {
    visibility: hidden;
    margin: 0;
    height: 0;
}

#sample {
    height: 100%;
    overflow-y: scroll;
    margin: 1em auto;
    padding-bottom: 4em;
    display: block;
}

.NoteIcon {
    padding: 10px;
    font-size: 2.3em;
    color: var(--my-blue);
}

.NoteTitle {
    margin: 5px 10px 5px 0;
    font-size: 1.2em;
    color: var(--my-blue);
}

.NoteData {
    margin: -5px 10px 0 0;
    font-size: small;
    color: black;
}

.notestListData {
    display: block;
}

.notesItem {
    height: 100%;
}

.notesTitleGrid {
    display: grid;
    grid-template-columns: auto 0 min-content min-content;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.notesListGrid {
    display: grid;
    grid-template-columns: min-content auto;
    grid-gap: 10px;
}

.notesTitle {
    font-size: large !important;
    color: var(--my-blue) !important;
}

.notesContent {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #ecebd0;
    border-color: grey;
}

.DetailContent {
    height: calc(100vh - 200px);
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: whitesmoke;
    border-color: lightgray;
    border-width: thin;
    border-style: solid;
    display: flex;
    flex-direction: column;
}

.DetailGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.span-columns-1-3 {
    grid-column: 1 / span 3;
}

.span-columns-1-4 {
    grid-column: 1 / span 4;
}

.span-columns-1-2 {
    grid-column: 1 / span 2;
}

.span-columns-2-3 {
    grid-column: 2 / span 2;
}

.btnTxt {
    visibility: visible;
}


@media only screen and (max-width: 768px) {
    #notesMobileWrap {
        visibility: visible;
        margin-top: 5px;
        margin-bottom: 5px;
        height: fit-content;
    }

    .notesGrid {
        display: grid;
        grid-template-columns: 0 100%;
        grid-gap: 0;
        flex: 1;
        height: 100%;
    }

    #notelist {
        visibility: hidden;
    }

    .NoteIcon {
        padding: 0;
        font-size: 1.2em;
        color: var(--my-blue);
    }

    .NoteTitle {
        margin: 0;
        font-size: 1em;
        color: black;
    }

    .NoteGroupTemplate {
        font-weight: bold;
        background-color: #cce6ff;
        width: 100%;
    }

    .notesTitleGrid {
        display: grid;
        grid-template-columns: auto min-content;
        grid-gap: 5px;
        margin-bottom: 10px;
    }

    .notesContent {
        padding: 20px;
        margin-left: 0;
        margin-right: 0;
        background-color: #ecebd0;
        border-color: grey;
    }

    .btnTxt {
        display: inline-block;
        visibility: hidden;
        width: 0;
    }
}

.e-listbox-container .e-list-item.e-selected {
    background-color: #cce6ff;
}

.e-richtexteditor.e-rte-tb-expand {
    border: none !important;
}

.e-listbox-container {
    width: 100%;
    display: block;
}

.chatbox {
    width: 100%;
    padding-bottom: 200px;
}

.fix-bottom {
    position: fixed !important;
    display: flex;
    align-items: start;
    width: 100% !important;
    padding: 1em !important;
    background-color: whitesmoke;
    bottom: 0 !important;
    z-index: 9;
}

.nav-Item {
    line-height: normal !important;
}

.nav-item[b-2z07276ohr] a {
    color: darkgreen;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: normal !important;
}

.navFooter {
    position: fixed !important;
    display: flex;
    font-size: small;
    align-items: start;
    width: 100% !important;
    padding: 1em !important;
    bottom: 0 !important;
    z-index: 200 !important;
    font-family: 'Verdana', sans-serif;
    border-left: 5px solid #d0d0d0;
    margin: 10px;
    color: #eee;
}

@media only screen and (max-width: 768px) {
    .navFooter {
        position: fixed !important;
        display: flex;
        font-size: small;
        text-align: right;
        width: fit-content;
        padding: 5px 5px 5px 10px !important;
        left: -10px !important;
        bottom: -10px !important;
        z-index: 5 !important;
        font-family: 'Verdana', sans-serif;
        color: #222;
        background-color: rgba(134, 179, 145, 0.4);
    }
}

.fix-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 46%;
}

.msg-container {
    display: grid;
    grid-template-rows: 95px calc(100vh - 370px) 200px;
    /* 70% and 30% of viewport height */
    height: 100%;
    width: 100%;
}

.msg-top {
    overflow-y: auto;
    /* Enable content scrolling */
    width: 100%;
}

.msg-bottom {
    background-color: #ebebeb;
    border: thin solid darkred;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .chatbox {
        width: 100%;
        padding-bottom: 200px;
        /*        display: inline-flex;*/
    }

    .fix-bottom {
        /*        width: 100% !important;*/
        padding: 10px !important;
        z-index: 99;
    }

    .fix-container {
        width: 90%;
    }
}

#msgList.e-listview .e-list-header {
    background-color: #0278d7;
    color: white;
    font-size: 1.3em;
}

#doclist {
    border: 1px solid #ccc;
    height: calc(100vh - 200px);
    overflow-y: auto;
}

.fullHeight {
    height: fit-content;
    overflow: visible;
    flex-grow: 1;
}

#notelist {
    margin: 0 auto;
    border: 1px solid #ccc;
}

#notelist .e-list-item {
    height: fit-content !important;
    line-height: 22px;
    padding: 8px;
}

#notelist.e-listview .e-list-header {
    background-color: #0278d7;
    color: white;
    font-size: 1.3em;
}

#notelist.e-listview .e-list-item.e-focused {
    color: black;
}

.e-list-item {
    height: fit-content !important;
    line-height: 18px;
    padding: 7px 9px 7px 12px;
    position: relative;
}

.msgDate {
    font-size: 0.8em;
    font-style: italic;
    color: grey;
}

.padding {
    padding-right: 8px;
}

.right__align {
    text-align: right;
    margin-right: 8px;
    padding-right: 8px;
    background-color: aliceblue;
}

.left__align {
    margin-left: 8px;
    padding-left: 8px;
    background-color: #bfd9bf;
}

.flex {
    display: flex;
}

.flex__center {
    justify-content: center;
}

.vertical__center {
    align-items: center;
}

.vertical {
    flex-direction: column;
}

.flex__order__1 {
    order: 1;
}

.flex__order__2 {
    order: 2;
}

.flex__1 {
    flex: 1;
}

.flex__2 {
    flex: 2;
}

.flex__3 {
    flex: 3;
}

.flex__5 {
    flex: 5;
}

.flex__8 {
    flex: 8;
}

.bold {
    font-weight: 500;
}

.margin {
    margin: 10px;
    width: 80%;
}

.small__font {
    font-size: 13px;
    margin: 2px 0;
}

@font-face {
    font-family: 'e-sb-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format("truetype");
    font-weight: normal;
    font-style: normal;
}

.ChartLabel {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
}

/*** Treeview Badge formats ***/
.e-treeview .e-list-text {
    width: 99%;
}

.treeTitle {
    width: 95%;
    display: flex;
    justify-content: space-between;
}

.treeCount.e-badge {
    padding: 0.4em;
    vertical-align: text-bottom;
}

.treeCount.e-badge.e-badge-primary {
    background-color: #498e8e !important;
}

.material .treeCount.e-badge {
    vertical-align: middle;
}

.bootstrap5.e-bigger .treeCount.e-badge,
.tailwind.e-bigger .treeCount.e-badge,
.tailwind-dark.e-bigger .treeCount.e-badge,
.bootstrap5-dark.e-bigger .treeCount.e-badge {
    line-height: 10px;
}

.bootstrap4 .treeviewdiv .treeCount.e-badge,
.bootstrap5 .treeviewdiv .treeCount.e-badge,
.bootstrap .treeviewdiv .treeCount.e-badge,
.bootstrap-dark .treeviewdiv .treeCount.e-badge,
.highcontrast .treeviewdiv .treeCount.e-badge,
.bootstrap5-dark .treeviewdiv .treeCount.e-badge {
    background-color: #008800;
}

.highcontrast .treeviewdiv .treeCount.e-badge {
    color: white;
}

.nodetext {
    float: left;
}

.e-rtl .nodetext {
    float: right;
}

.nodebadge {
    float: right;
    margin-right: 10px
}

.e-rtl .nodebadge {
    float: left;
    margin-left: 5px
}

.mail-monitoring-dashboard {
    margin: 0 0 20px 0;
    padding: 10px;
    background: white;
}

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
}

@media (max-width: 768px) {
    .dashboard-tiles {
        grid-template-columns: 1fr;
    }
}

.status-tile {
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.status-tile.healthy {
    border-left: 4px solid #28a745;
}

.status-tile.unhealthy {
    border-left: 4px solid #dc3545;
}

.domain-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-icon {
    color: #0366d6; /* matches your app's blue theme */
    font-size: 1.2em;
}

.status-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
    background: #fff;
    min-height: 36px;
    width: 100%; /* Ensure full width */
}

.indicator i,
.indicator .status-spinner {
    flex: 0 0 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indicator i.available {
    color: #28a745;
}

.indicator i.unavailable {
    color: #dc3545;
}

.status-details {
    font-size: 0.9em;
    color: #6c757d;
}

.error-info {
    margin-top: 10px;
    color: #dc3545;
    font-size: 0.85em;
}

.status-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

.status-spinner-text {
    color: #3498db;
    font-style: italic;
    text-align: center;
    padding: 10px 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.indicator i.loading {
    color: #ffc107; /* Bootstrap warning yellow */
}

.error-icon {
    color: #dc3545;
    margin-left: auto;
    cursor: help;
}


/* Override Syncfusion's default tab styles */
/**SFTab settings **/
.e-tab-content {
    padding: 0.5em 1.5em;
    background-color: whitesmoke;
    margin-top: 15px;
    margin-bottom: 15px;
}

.e-tab-border {
    border-color: darkseagreen;
    border-width: 2px;
    border-style: groove;
    border-radius: 0.5em;
}

.e-tab-label {
    background-color: whitesmoke;
}

.e-tab-label.detail {
    background-color: whitesmoke;
    padding-left: 10px;
    padding-right: 20px;
}

.e-dlg-content {
    overflow: inherit !important;
    overflow-x: inherit !important;
}

/*/// SF Tabs ///*/
.e-tab .e-tab-header .e-tab-text {
    color: #5D5D5D !important;
}

.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
    color: darkred !important;
    font-size: 1.2em !important;
}

.e-tab .e-tab-header .e-toolbar-item {
    background-color: whitesmoke !important;
    padding-bottom: 5px;
    border-color: darkseagreen !important;
}

.e-tab .e-tab-header .e-toolbar-item.e-active {
    border-bottom: 4px solid;
    border-bottom-color: darkred !important;
    background: white !important;
}

.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
    background: #c0d8c6 !important;
}

.upload-spinner {
    display: inline-block;
    margin-left: 10px;
    color: var(--my-blue);
}

.upload-spinner i {
    margin-right: 5px;
}
