/*
 * Custom CSS Overrides
 * 
 * This file contains custom styles that override the default application styles.
 * Add any custom styling here to ensure it takes precedence over existing styles.
 * 
 * Load order: This file is loaded after app.css to ensure overrides work correctly.
 */

/* ============================================================================
   CUSTOM STYLES - Add your custom overrides below
   ============================================================================ */

/* Example: Custom button styles */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000000;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #000000;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
  color: #000000;
}
.form-control:-moz-placeholder { /* Firefox 18- */
  color: #000000;
}
.btn {
    border-radius: 6px;
    white-space: nowrap;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-icon,
.mdi-magnify {
    font-size: 20px;
}

form .btn {
    height: 42px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px;
    font-weight: 600;
}

.btn-primary {
    background: #E26E21;
    border-color: #E26E21;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
    background: #BE5C1C;
    border-color: #BE5C1C;
}

.btn:disabled {
    opacity: 0.5;
}

.btn-lg {
    height: 56px;
    font-size: 16px;
    font-weight: 600;
}

.btn-outline-primary {
    border: 2px solid #E26E21;
    color: #E26E21;
    white-space: nowrap;
}

.btn-outline-primary:hover {
    background: #E26E21;
    border-color: #E26E21;
}

.rounded-circle .avatar-title,
.avatar-xs .avatar-title {
    background-color: #E26E21;
}

.form-control,
.form-select {
    transition: all ease-in-out .3s;
    min-height: 42px !important;
    border-radius: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "Inter", sans-serif !important;
    font-style: normal;
    font-weight: 500;
    border: 1px solid var(--gray-300, #C7CDD2)
}

.form-select option {
    font-family: "Inter", sans-serif;
    font-style: normal;
}

.form-control:focus {
    box-shadow: inset 0 0 0 1px #E26E21;
    border-color: #E26E21;
}

/* Password input group - ensure button height matches input */
.auth-pass-inputgroup .btn {
    height: 100%;
    min-height: 48px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.account-pages {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 90%, rgba(60, 60, 60, 0.7), transparent 80%),
        radial-gradient(circle at 50% 80%, rgba(60, 60, 60, 0.7), transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(60, 60, 60, 0.7), transparent 80%),
        #000;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.silhouette {
    position: absolute;
    width: 100%;
    height: 360px;
    background: url(../images/silhouette.png) repeat-x center center;
    left: 0;
    bottom: 0;
}

.login-box {
    position: relative;
    z-index: 5;
    flex-direction: row;
    border: 1px solid #474747;
    border-radius: 8px;
}

.login-box .left-col {
    position: relative;
    flex: 0 0 50%;
    background: url(../images/fire-fighters.jpg) repeat-x center center;
    background-size: cover;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 28px;
    padding: 32px;
}

.login-box .left-col.changePassword {
    background: url(../images/changePassword-bg.jpg) repeat-x center center;
}

.login-box .left-col.resetPassword {
    background: url(../images/resetPassword-bg.jpg) repeat-x center center;
}

/* .login-box .left-col.resetPassword {
    background: url(../images/resetPassword-bg.jpg) repeat-x center center;
} */

.login-box .left-col::after {
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0;
    bottom: 0;
    background: linear-gradient(195deg, rgba(0, 0, 0, 0) 30%, rgba(224, 218, 204, 0.6) 50%, rgba(224, 218, 204, 1) 90%);
    z-index: 1;
    content: "";
}

.login-box .logo {
    position: relative;
    z-index: 2;
}

.login-box .logo img {
    width: auto;
    height: 300px !important;
}

.login-box .left-col .message {
    position: relative;
    color: #000000;
    z-index: 2;
}

.login-box .left-col .message h5 {
    font-family: "Teko", sans-serif;
    font-size: 36px;
    margin: 0;
}

.login-box .left-col .message p {
    font-size: 14px;
    font-weight: 500;
}

.login-box .form-title {
    font-family: "Teko", sans-serif;
    font-size: 46px;
    margin-bottom: 30px;
    color: #000000;
}

.login-box .divider {
    border-bottom: 2px dashed #C7CDD2;
    height: 1px;
    text-align: center;
    margin: 30px 0 40px;
    ;
}

.login-box .divider span {
    display: inline-block;
    padding: 4px 10px;
    position: relative;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    color: #C7CDD2;
    text-transform: uppercase;
    top: -12px;
    z-index: 1;
}

.login-box .text-muted {
    color: #E26E21 !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    display: block;
}

.login-box .text-muted:hover {
    color: #414141 !important;
    text-decoration: underline !important;
}

.login-box .form-control {
    height: 48px;
}

.login-box .otp-box {
    height: 68px;
}

.login-box .rc-title {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    display: inline-block;
    margin-bottom: 8px;
}

.login-box .resend {
    font-size: 16px;
    font-weight: 600;
    color: #0A0A0A;
}

.login-box .resend .rc-title {
    color: #DDC7B9;
}

.login-box .rc-btn {
    font-size: 16px;
    font-weight: 600;
    color: #DDC7B9;
    text-decoration: underline !important;
}

.login-box .rc-btn:hover {
    color: #0A0A0A;
}

.login-box .resend .timer {
    color: #00BA00;
}

#page-topbar {
    background-color: #fff;
    box-shadow: none;
}

.vertical-collpsed:not([data-hover-overlay="true"]) .navbar-brand-box {
    padding: 0 16px;
}

#sidebar-menu ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.0384em;
}

#sidebar-menu ul li ul.sub-menu li a {
    text-transform: capitalize;
    font-weight: 600;
    color: #bdbdbd;
}

.page-title-box {
    padding-top: 0;
    flex-wrap: wrap;
}

.page-title-box h4 {
    font-family: "Teko", sans-serif;
    font-size: 48px !important;
    text-transform: capitalize;
    color: #3E4144;
}

.card {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--gray-100, #E1E4E7);
}

.card-header {
    background-color: rgb(226 110 33 / 19%);
    padding-top: 10px;
    padding-bottom: 10px;
}

.card-header:first-child {
    border-radius: 8px 8px 0 0;
}

.card-title {
    font-size: 22px;
    font-weight: 400;
    font-family: "Teko", sans-serif;
    margin: 0;
    color: #0A0A0A;
}

#layout-wrapper .footer {
    background-color: #fff;
    left: 268px;
    transition: left 0.4s ease-in-out;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .footer {
    left: 80px;
}

#layout-wrapper .footer * {
    color: #0A0A0A;
}

.badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
}

.badge-soft-success {
    color: #fff;
    background-color: #E26E21 !important;
}

.badge-soft-primary {
    color: #fff;
    background-color:  #34c38f !important;
}

.badge-soft-secondary {
    color: #6c757d;
    background-color: rgba(108, 117, 125, 0.18) !important;
}

.badge-soft-danger {
    color: #dc3545;
    background-color: rgba(220, 53, 70, 0.18) !important;
}

.badge-soft-warning {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.18) !important;
}

.badge-soft-info {
    color: #0dcaf0;
    background-color: rgba(13, 202, 240, 0.18) !important;
}

.nav-tabs .nav-link {
    background-color: #e0dacd;
    color: #333;
}

.active>.page-link,
.page-link.active {
    background-color: #E26E21;
    border-color: #E26E21;
}

.disabled>.page-link,
.page-link.disabled,
.page-link {
    border-color: #e0dace;
}

.form-check.form-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-switch .form-check-input {
    width: 3em;
    height: 22px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-color: #f46a6a;
    border-color: #f46a6a;
}

.form-switch .form-check-input:checked {
    background-color: #34c38f;
    border-color: #34c38f;
}

.form-switch .form-check-label {
    margin-bottom: 0;
}

textarea.form-control {
    resize: none;
}

.form-switch .form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.logo-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.count-position {
    position: relative;
    top: -8px;
    margin-bottom: 0 !important;
    padding: 8px !important;
}

/* Sortable table headers (incidents page) */
.sortable-header {
    font-weight: 600;
    color: #4b5563;
    /* neutral text */
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}

.sortable-header:hover,
.sortable-header:focus {
    color: #111827;
    text-decoration: none;
    box-shadow: none;
}

.sortable-header span {
    font-size: 0.85rem;
}

/* update admin css */
#layout-wrapper .vertical-menu {
    background: #E8EAED;
    width: 268px;
    transition: width 0.3s ease-in-out;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .vertical-menu {
    width: 80px !important;
    position: fixed;
    overflow: hidden;
}

#layout-wrapper .navbar-brand-box {
    background: #e8eaed;
    width: 268px;
    transition: width 0.3s ease-in-out;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .navbar-brand-box {
    width: 80px !important;
}

#layout-wrapper .main-content {
    margin-left: 268px;
    transition: margin-left 0.4s ease-in-out;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .main-content {
    margin-left: 80px;
}

#layout-wrapper #sidebar-menu ul {
    padding: 0 16px;
}

#layout-wrapper #sidebar-menu ul ul.sub-menu {
    padding: 0 0 12px;
}

#layout-wrapper #sidebar-menu ul li {
    padding: 0;
    margin-bottom: 2px;
    border-radius: 6px;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper #sidebar-menu ul li {
    padding: 0;
}

#layout-wrapper #sidebar-menu ul li a {
    display: flex;
    align-items: center;
    color: #665F52;
    border-radius: 6px;
    padding: 12.5px 16px;
    margin-bottom: 0;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper #sidebar-menu ul li a {
    padding: 12px;
    min-height: 50px;
}

#layout-wrapper #sidebar-menu ul li a span.caret.float-end {
    margin-left: auto;
    float: none !important;
    position: relative;
    top: -4px;
}

#layout-wrapper #sidebar-menu ul li a:before {
    display: none;
}

#layout-wrapper #sidebar-menu ul li a.mm-active,
#layout-wrapper #sidebar-menu ul li a:hover,
#layout-wrapper #sidebar-menu ul li.mm-active,
#layout-wrapper #sidebar-menu ul li:hover,
#layout-wrapper #sidebar-menu ul li:hover a {
    background-color: #000000;
    color: #fff !important;
}

#layout-wrapper #sidebar-menu ul li a i {
    color: #000000;
    font-weight: bold;
    margin: 0;
}

#layout-wrapper #sidebar-menu ul li a:hover i,
#layout-wrapper #sidebar-menu ul li:hover a i,
#layout-wrapper #sidebar-menu ul li a.mm-active i {
    color: #E26E21 !important;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .vertical-menu #sidebar-menu>ul>li:hover>ul {
    border-radius: 0 6px 6px 0;
    background-color: #e8eaed;
    left: 70px;
    width: auto;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .vertical-menu #sidebar-menu>ul>li:hover>a {
    background: #000000;
    color: #fff !important;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper .vertical-menu #sidebar-menu>ul>li:hover>a i {
    color: #E26E21 !important;
}

#layout-wrapper #sidebar-menu ul ul.sub-menu li {
    padding: 0 16px 5px 26px;
    margin: 0;
}

#layout-wrapper #sidebar-menu ul ul.sub-menu li a {
    color: #665F52;
    padding-left: 17px;
}

#layout-wrapper #sidebar-menu ul ul.sub-menu li a.mm-active,
#layout-wrapper #sidebar-menu ul ul.sub-menu li a:hover {
    background-color: #E26E21;
    color: #fff;
}

#layout-wrapper #sidebar-menu ul li.mm-active ul.sub-menu li a {
    color: #fff;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper #sidebar-menu ul ul.sub-menu li {
    padding: 0;
    margin: 3px 0;
}

.vertical-collpsed:not([data-hover-overlay="true"]) #layout-wrapper #sidebar-menu ul ul.sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
}

.main-content .page-title-right {
    position: fixed;
    top: 12px;
    z-index: 1002;
    left: 310px;
    transition: all 300ms ease-in-out;
}

.vertical-collpsed:not([data-hover-overlay="true"]) .main-content .page-title-right {
    left: 140px;
}

.gray-card {
    /* background-color: #E8EAED;
    padding: 16px;
    border-radius: 8px; */
    margin-bottom: 16px;
}

.d-flex.gap-16 {
    max-width: 654px;
}

.d-flex.gap-16,
.d-flex.gap-16 .row {
    width: 100%;
}

.gray-card .row,
.row.gap-16,
#layout-wrapper .row {
    --bs-gutter-x: 16px;
}

.gray-card .row .card {
    box-shadow: none;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
    transition: all 300ms ease-in-out;
    background-color: #fff;
    background-image: none;
    margin-bottom: 0;
    min-height: 137px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
    /* background: linear-gradient(135deg, #fff3e0 0%, #ffd180 25%, #ffab40 55%, #ff6e40 80%, #ff1744 100%);
    background-blend-mode: lighten; */
}

/* .gray-card .row .card:hover {
    position: relative;
    border: 1px solid #3E4144;
    box-shadow: 0px 4px 9px 0px #00000038;
    background-image: url('../images/card-gradiant-bg.webp');
    background-color: #3E4144;
    background-size: cover;
    background-repeat: no-repeat;
} */

.gray-card .row .card .card-body p {
    font-size: 16px;
    color: #0A0A0A !important;
}

/* .gray-card .row .card:hover .card-body p {
    color: #E1E4E7 !important;
} */

.gray-card .row .card .card-body .d-flex {
    height: 100%;
}

.gray-card .row .card .card-body .d-flex .flex-grow-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gray-card .row .card .card-body h4 {
    font-family: "Teko", sans-serif;
    font-size: 40px !important;
    color: #000000 !important;
    line-height: 32px;
}

.gray-card .row .card .card-body h4 span {
    font-size: 18px;
    color: #767B81;
}

/* .gray-card .row .card:hover .card-body h4 {
    color: #fff !important;
} */

.gray-card .card.mini-stats-wid .mini-stat-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 6px !important;
}

.gray-card .card.mini-stats-wid .mini-stat-icon .avatar-title {
    background-color: inherit;
}

.bg-orange,
.badge-primary {
    background-color: #E26E21 !important;
}

.bg-yellow {
    background-color: #FFC600 !important;
}

.bg-green {
    background-color: #00AA00 !important;
}

.card .btn.btn-sm {
    height: 32px;
}

.details-info-wrap .card-body .row .text-right {
    text-align: right;
}

.details-info-wrap .card-body .row .col-md-3 strong {
    color: #495057;
    font-size: 13px;
    font-weight: 700;
}

.details-info-wrap .card-body .row .col-md-3 span {
    color: #5A5E62;
    font-size: 13px;
    font-weight: 400;
}

.details-info-wrap .card-body .row .col-md-3 span.bg-secondary {
    background-color: #F7D6C1 !important;
    color: #815006;
    border-radius: 30px;
}

.details-info-wrap .card-body .row .col-md-3 span.bg-success {
    color: #fff;
    font-size: 12px;
}

#layout-wrapper .details-info-wrap .card-body .row {
    --bs-gutter-x: 50px;
}

.showMore-accordion .accordion-header .accordion-button {
    font-size: 16px;
    color: #E26E21;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.showMore-accordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: #e8eaed;
}

.showMore-accordion .accordion-header .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 32px;
    font-family: "Teko", sans-serif;
    font-weight: 300;
    line-height: 24px;
    margin-left: 0;
    position: relative;
    right: 0;
    top: -1px;
}

.showMore-accordion .accordion-header .accordion-button:not(.collapsed)::after {
    transform: none;
    content: "-";
}

#layout-wrapper .form-label {
    color: #000000;
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 11px;
}

.btn-sm-action-position {
    position: absolute;
    right: 20px;
    top: 10px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.card .btn-sm-action .btn.btn-sm {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.export-filter-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.export-filter-wrap .export-filter-fields .form-select {
    min-width: 190px;
}

.form-select:focus {
    box-shadow: inset 0 0 0 1px #E26E21;
    border-color: #E26E21;
}

.checkbox-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.checkbox-wrap .form-check {
    margin: 0;
}

.checkbox-wrap .form-check .form-check-label {
    margin: 0;
}

.imageView-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.transcription-chatlist {
    max-height: 550px;
    overflow-y: auto;
}

.transcription-chatlist .bg-light {
    background: linear-gradient(0deg, var(--beige-50, #EEEBE4), var(--beige-50, #EEEBE4)), linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
}

.accodion-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 10px;
}

.accodion-grid .accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--gray-100, #E1E4E7);
}

.accodion-grid .accordion-item {
    border: 1px solid var(--gray-100, #E1E4E7);
    border-radius: 6px;
}

.accodion-grid .accordion-item .accordion-button {
    border-radius: 6px;
}

.accodion-grid .accordion-item .accordion-button span {
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}

.accodion-grid .accordion-item .accordion-button small {
    font-weight: 400;
    font-size: 14px;
    color: #91989F;
}

.accodion-grid .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.accodion-grid .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.btn:active,
.btn:focus-visible,
.btn:first-child:active {
    background-color: #E26E21;
    box-shadow: none;
    outline: none;
    border-color: #E26E21;
}

.add-image-box {
    border: 1px dashed var(--gray-400, #BAC1C8);
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-color: #E8EAED;
    color: #5A5E62;
    box-shadow: none;
    outline: none;

}

.add-image-box span {
    margin-top: 0;
}

.add-image-box:focus {
    box-shadow: none;
    outline: none;
}

.add-image-box:hover,
.add-image-box:active,
.add-image-box:focus-visible,
.add-image-box:first-child:active {
    border: 1px dashed var(--gray-400, #BAC1C8);
    background-color: #f8f8fb;
    color: #5A5E62;
}

.add-image-box span {
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-top: 0;
    color: #5A5E62;
}

.max-320 {
    max-width: 320px;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 16px;
}

.page-title-box .d-flex.gap-16 .row .form-select {
    color: #3E4144;
}

.page-title-box .d-flex.gap-16 .row .form-select,
.page-title-box .d-flex.gap-16 .row .btn {
    font-size: 13px;
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: .4px;
}

.d-flex.gap-3 {
    align-items: center;
}

.modal .modal-dialog .modal-content {
    box-shadow: 0px 2px 5px 0px #00000005;
    border: 1px solid var(--gray-100, #E1E4E7);
    border-radius: 8px;
}


.modal .modal-dialog .modal-header {
    border: 0;
}

.modal .modal-dialog .modal-header .modal-title {
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    font-family: "Teko", sans-serif;
    margin: 0;
    color: #0A0A0A;
}

.form-label {
    color: #000000;
    margin-bottom: 5px !important;
    font-weight: 500;
    font-size: 12px;
}

.form-select:disabled {
    background-color: #EDF0F2;
    color: #657489;
}

.form-control:disabled {
    background-color: #EDF0F2;
    opacity: 1;
    color: #657489;
}

.react-datepicker {
    font-family: "Inter", sans-serif !important;
    border: 1px solid #e2e2e2;
    box-shadow: 0 0 20px #999999;
}

.react-datepicker .react-datepicker__header {
    background-color: #fff5ef;
}

.react-datepicker .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
    fill: #fff5ef;
    color: #f0f0f0;
}

.react-datepicker .react-datepicker__day-name,
.react-datepicker .react-datepicker__day,
.react-datepicker .react-datepicker__time-name {
    text-align: center;
    width: 2rem;
    height: 2rem;
    margin: .166rem;
    line-height: 2rem;
    font-size: 13px;
    font-weight: 400;
}

.react-datepicker .react-datepicker__day--keyboard-selected,
.react-datepicker .react-datepicker__month-text--keyboard-selected,
.react-datepicker .react-datepicker__quarter-text--keyboard-selected,
.react-datepicker .react-datepicker__year-text--keyboard-selected {
    color: #fff;
    background-color: #E26E21;
    border-radius: .3rem;
}

.react-datepicker .react-datepicker__day--selected,
.react-datepicker .react-datepicker__day--in-selecting-range,
.react-datepicker .react-datepicker__day--in-range,
.react-datepicker .react-datepicker__month-text--selected,
.react-datepicker .react-datepicker__month-text--in-selecting-range,
.react-datepicker .react-datepicker__month-text--in-range,
.react-datepicker .react-datepicker__quarter-text--selected,
.react-datepicker .react-datepicker__quarter-text--in-selecting-range,
.react-datepicker .react-datepicker__quarter-text--in-range,
.react-datepicker .react-datepicker__year-text--selected,
.react-datepicker .react-datepicker__year-text--in-selecting-range,
.react-datepicker .react-datepicker__year-text--in-range {
    background-color: #E26E21;
}

.react-datepicker .react-datepicker__header__dropdown--select select {
    border: 1px solid var(--gray-300, #C7CDD2);
    border-radius: 6px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
}

.react-datepicker h2.react-datepicker__current-month {
    margin: 0px 0 5px;
}

.modal-content div ul.small {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-content div ul li {
    word-wrap: break-word;
    word-break: break-all;
    font-size: 12px;
    background-color: #fdf5ef;
    padding: 2px 8px;
    border-radius: 6px;
    color: #000;
}

.card,
.tableCardOuter,
.tableFilterCardOuter {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    background: #fff;
    /* border-radius: 8px; */
}

.table-responsive td,
.table-responsive th {
    font-size: 13px;
    font-weight: 500;
    color: #0A0A0A;
    transition: all 0.3s ease-in-out;
}

.table-responsive th {
    background-color: #eff2f7;
    border: 0;
    color: #7d7d7d !important;
    font-weight: 600;
}

.table-responsive td {
    border-color: #dcdcdc;
    line-height: 1.3;
    min-height: auto;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
}

.table-responsive tbody tr:hover {
    position: relative;
    /* z-index: 1; */
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px; */
}

.table-responsive tr:hover td {
    border-color: transparent;
}

.table-responsive tbody tr {
    transition: all 0.3s ease-in-out;
}

.table-responsive tbody tr:hover>* {
    --bs-table-color-state: var(--bs-table-hover-color);
    --bs-table-bg-state: #ffefe5 !important;
}

.tableCardOuter .table-responsive {
    max-height: 45vh;
    padding-right: 15px;
    margin-right: -20px;
}

.lg-toolbar .lg-download {
    display: none !important;
}

.lg-toolbar .lg-zoom-in {
    display: none !important;
}

@media (min-width: 1800px) {

    .tableCardOuter .table-responsive {
        max-height: 44vh;
    }

}

@media (min-width: 2200px) {

    .tableCardOuter .table-responsive {
        max-height: 50vh;
    }

}

@media (min-width: 2800px) {

    .tableCardOuter .table-responsive {
        max-height: 61vh;
    }

}

.tableCardOuter .table-responsive::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.tableCardOuter .table-responsive::-webkit-scrollbar-thumb {
    background: #a8724e;
    border-radius: 4px;
}

.tableCardOuter .table-responsive::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.tableCardOuter .table-responsive:has(tbody tr:only-child) {
    min-height: 250px;
}

.tableCardOuter thead {
    position: sticky;
    top: 0;
    z-index: 5;
}

.table-responsive .sortable-header:active {
    background-color: transparent;
    color: #111827;
}

.create-task-description {
    height: 123px !important;
}

.create-task-keywords .keyword-badge {
    padding: 0 10px;
    min-height: 30px;
    justify-content: space-between;
    background: #E26E21 !important;
    border-radius: 30px;
    /* min-width: 70px; */
}

.create-task-keywords .keyword-badge span {
    color: #fff;
}

.create-task-keywords .keyword-badge .btn {
    line-height: 1;
    height: auto;
}

.incidentBasicInfoList {
    display: flex;
    justify-content: space-between;
}

.incidentBasicInfoList strong,
.incidentBasicInfoScrollList strong {
    display: block;
    margin-bottom: 6px;
}

.incidentBasicInfoList span,
.showMore-accordion span {
    color: #0A0A0A !important;
}

.incidentBasicInfoList .badge.bg-secondary {
    background-color: #51280c !important;
    color: #fff !important;
}

.incidentBasicInfoList .badge.bg-success {
    background-color: #E26E21 !important;
    color: #fff !important;
}

.incidentBasicInfoScrollList .scroll-text-box {
    background: none;
    border: 1px solid #bfbdbd;
    color: #0a0a0a;
    line-height: 1.7;
    max-height: 250px;
}

.incidentGalleryCount {
    background-color: #51280c;
    display: inline-flex;
    width: auto;
    margin-left: auto;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.incidentGalleryImageCard {
    position: relative;
    overflow: hidden;
}

.incidentGalleryImageCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0.8);
    border-radius: 0.25rem;
}

.incidentGalleryImageCard:hover::before {
    opacity: 1;
    transform: scale(1);
}

.incidentGalleryImageCard .incident-gallery-link {
    height: 100%;
    padding: 0;
    border: 0;
    width: 100%;
}

.incidentGalleryImageCard .img-fluid {
    object-fit: cover;
    object-position: top;
}

.incidentGalleryImageCard .zoomBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2;
    pointer-events: none;
    background-color: transparent;
    padding: 0;
    border: 0;
    font-size: 30px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.incidentGalleryImageCard:hover .zoomBtn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.incidentDetailsCardOuter #incident-media .card {
    height: auto;
}

.incidentDetailsCardOuter {
    box-shadow: none;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .card:not(.headerCard) {
    border: 1px solid #e2e2e2;
    background: #fff;
    padding: 15px;
    height: 100% !important;
    margin: 0;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .card:not(.headerCard) .card-header {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .card:not(.headerCard) .card-title {
    margin-bottom: 20px !important;
}

.orgDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist .border {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist {
    padding-right: 10px;
    margin-right: -14px;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist::-webkit-scrollbar-thumb {
    background: #a8724e;
    border-radius: 4px;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 4px;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist .bg-light {
    background: #e9e9e9 !important;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist .bg-light:nth-of-type(even) {
    background: #f1f3f4 !important;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist .bg-light * {
    color: #0A0A0A !important;
}

.incidentDetailsCardOuter .tab-content .incidentMediaSection .transcription-chatlist .badge {
    background: rgb(81 40 12) !important;
}

.viewIncidentLogsCard .table-responsive {
    padding-right: 15px;
    margin-right: -15px;
}

.incident-basic-details-body .showMore-accordion .accordion-header .accordion-button {
    font-size: 13px;
    background: #E26E21 !important;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    color: #fff;
    max-width: 130px;
    margin-left: auto;
    border-radius: 6px !important;
    margin-bottom: 20px;
    padding: 12px;
}

.incident-basic-details-body .showMore-accordion .accordion-item {
    border: 0;
}

.incident-basic-details-body .showMore-accordion .accordion-item .accordion-collapse {
    border: 1px solid #bfbdbd;
    border-radius: 6px;
    box-shadow: none;
}

.hotwashReportCard .form-control:disabled {
    background-color: var(--bs-body-bg);
    opacity: 1;
    color: #0a0a0a;
}

.hotwashReportCard textarea.form-control {
    height: 183px !important;
    color: #0a0a0a;
    line-height: 1.7;
}

.taskViewModalBody .taskViewModalBodyContent {
    border: 1px solid #bfbdbd;
    border-radius: 6px;
    box-shadow: none;
    padding: 15px 0;
    padding-top: 0;
    overflow: hidden;

}

.taskViewModalBody .taskViewModalBodyContent .col-sm-8 {
    color: #0A0A0A;
}

.taskViewModalBodyContent .row {
    border-bottom: 1px solid #ddd9d9;
    border-radius: 6px;
    box-shadow: none;
    padding: 10px 15px;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.taskViewModalBodyContent .row:nth-child(even) {
    background-color: #eceff1;
}

.taskViewModalBodyContent .row:last-child {
    margin-bottom: 0 !important;
    border-bottom: 0;
}

.badgePrimary {
    background-color: #E26E21 !important;
    color: #fff !important;
}

.bg-secondary {
    background-color: #000000 !important;
}

.incidentDetailsCardOuter .tab-content>.tab-pane {
    display: block;
    opacity: 1;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 15px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.incidentDetailsCardOuter .tab-content>.tab-pane:last-child {
    margin-bottom: 0;
}

.incidentDetailsCardOuter .card-header {
    border-radius: 8px;
    padding: 12px;
}

/* #orgDetailsTabContent {
    max-height: 69vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    margin-right: -20px;
} */

#orgDetailsTabContent::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

#orgDetailsTabContent::-webkit-scrollbar-thumb {
    background: #a8724e;
    border-radius: 4px;
}

#orgDetailsTabContent::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 4px;
}

.react-datepicker-popper {
    z-index: 8;
}

.modal-body {
    padding-bottom: 35px;
}

.incident-bulk-upload-error-details ul {
    list-style: none;
    padding: 0;
}

.incident-bulk-upload-error-details ul li {
    background-color: transparent !important;
    padding: 0 !important;
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.incident-bulk-upload-error-details ul li:last-child {
    margin-bottom: 0;
}

.incident-bulk-upload-error-details ul li i {
    color: #d72e2e;
    font-size: 17px;
    line-height: 1;
    position: relative;
    top: -1px;
}

.yarl__slide_image {
    cursor: grab;
}
.incidentStatusBadges .isAudioUploaded{
    background-color: #ffd770 !important;
}
.incidentStatusBadges .isTranscriptionFailed {
    background-color: #dc3545 !important;
}
.incidentStatusBadges .isTranscriptionSuccess {
    background-color: #6ca756 !important;
}
.incidentStatusBadges .isReportRequired {
    color: #6c757d;
    background-color: rgba(108, 117, 125, 0.18)  !important;
}
.incidentStatusBadges .isSynced {
    background-color: #4b89e4 !important;
}
.loginRightLogo{
    display: none;
}

@media (max-width: 992px) {
    #layout-wrapper .navbar-brand-box {
        width: auto;
        padding: 0 0 0 1.5rem;
        background: #fff;
    }

    .login-box .left-col {
        flex: 0 0 40%;
    }

    .main-content .page-title-right {
        left: 120px;
    }

    #layout-wrapper .footer {
        left: 0;
    }
}

@media (max-width: 767px) {
    .login-box .left-col {
        display: none;
    }

    .login-box {
        flex-direction: column;
    }

    .gray-card .row,
    .row.gap-16,
    #layout-wrapper .row {
        --bs-gutter-x: 8px;
    }

    .main-content .page-title-right {
        left: -12px;
        position: relative;
        top: 0;
        z-index: 1;
    }
    .loginRightLogo{
        display: block;
        max-width: 140px;
        margin-bottom: 10px;
    }
}