@import url("https://fonts.googleapis.com/css2?family=Life+Savers:wght@400;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #ffff;
}

html {
    font-size: 16px;
}

/* login css start */
.login-bg {
    background-image: url(../images/bg-image.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    padding: 50px;
}

.login-logo img {
    width: 100px;
}

.sign-in-btn {
    background-color: #f09114;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
}

.sign-in-btn:hover {
    border: 1px solid #f09114;
    color: #f09114;
}

.form-bg {
    background-color: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 100px 50px;
    width: 650px;
    border-radius: 15px;
}

.form-bg h2,
.form-bg p,
.form-bg label {
    color: #000;
}

.form-bg .form-control {
    padding: 1rem 0.75rem;
    padding-left: 60px;
    border-radius: 50px;
    border: 1px solid #aaaaab;
}

.form-bg .email-icon {
    padding: 1rem 0.75rem;
    border-right: 1px solid #aaaaab;
    border-radius: 50px 00px 0 50px;
    position: absolute;
    top: 36%;
}

.email-verification .form-control {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    padding: 20px;
    font-size: 25px;
}

.email-verification .verification-input-field {
    max-width: 400px;
    margin: 0 auto;
}

/*Login Css End Here*/

/*Dashboard Css Start Here*/
/*Header Css Here*/
.headersec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #15191d;
    padding: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    margin-left: 300px;
    position: sticky;
    top: 0;
    z-index: 9;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.headersec .menuBtn {
    background: transparent;
    border: none;
    outline: none;
}

.headersec .rightPanelBoxhead {
    display: flex;
    align-items: center;
    gap: 10px;
}

.headersec .rightPanelBoxhead button {
    background: transparent;
    border: none;
    outline: none;
    /* width: 70px;
    height: 70px; */
    padding: 0px;
    /* border-radius: 50%; */
    overflow: hidden;
}

.profileDropdown ul {
    padding: 0px;
    overflow: hidden;
}

.profileDropdown ul li {
    border-bottom: 1px solid #ddd;
}

.profileDropdown ul li:last-child {
    border: none;
}

body.dark .profileDropdown ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    color: #212529;
    background: transparent;
}

.profileDropdown ul li a {
    background: #15191d;
    color: #efefef;
}

.profileDropdown ul li a span:first-child {
    width: 20px;
    text-align: center;
    color: #9fbd5f;
}

body.dark .profileDropdown ul li a:hover {
    background: #9fbd5f;
}

.profileDropdown ul li a:hover {
    background: #adadad;
}

.profileDropdown ul li a:hover span:first-child {
    color: #000;
}

/*Sidebar Css Here*/
.closeAside {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    background-color: #15191d;
    color: #fff;
    position: absolute;
    right: -15px;
    top: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: none;
}

.sidebarsec {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 280px;
    background: #15191d;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.sidebarsec > a.sitelogo {
    display: block;
    /* background: #fff; */
    text-align: center;
    padding: 10px;
}

.sidebarsec ul {
    list-style: none;
    padding: 20px 0px;
    margin: 0px;
}

.sidebarsec ul li {
    padding: 0 15px;
    margin-bottom: 15px;
}

.sidebarsec ul li a {
    display: flex;
    padding: 15px;
    gap: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border: 1px solid #c58835;
    border-radius: 8px;
}

.sidebarsec ul li a span {
    line-height: normal;
}

.sidebarsec ul li a:hover,
.sidebarsec ul li a.sidenavlinkActive {
    background: #c58835;
    border-radius: 8px;
    color: #050810;
    font-weight: 500;
}

.sidebarsec ul li a:hover span svg,
.sidebarsec ul li a.sidenavlinkActive span svg,
.sidebarsec ul li a:hover span svg path,
.sidebarsec ul li a.sidenavlinkActive span svg path {
    stroke: #fff;
    opacity: 1;
}

.dashboardBodySection {
    padding: 20px 0;
    margin-left: 300px;
    transition: all 0.3s ease-in-out;
    min-height: 81vh;
}

.sectionHeading h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dashboardCard {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 20px;
}

.dashboardCard > * > h2 {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/*Dashboard Css End Here*/

/*Dashboard Sidebar Collapse Css Start Here*/

.dashboardSlide .headersec,
.dashboardSlide .dashboardBodySection {
    margin-left: 110px;
}

.dashboardSlide .sidebarsec {
    width: 90px;
}

.dashboardSlide .sidebarsec > a.sitelogo {
    height: 85px;
    display: flex;
    align-items: center;
}

.dashboardSlide .sidebarsec > a.sitelogo img {
    width: 80px;
}

.dashboardSlide .sidebarsec ul li a span:nth-child(2) {
    display: none;
}

/*Dashboard Sidebar Collapse Css End Here*/

.dashbaodr-bg {
    background: #0d1215;
    padding: 20px;
}

.dashbaodr-bg .sidebarsec {
    margin: 20px;
}

.profileDropdown span {
    font-weight: 300;
    font-size: 14px;
}

.footer-sec {
    justify-content: center;
    padding: 20px 15px;
    color: #fff;
}

.dashbard-card-bg {
    background-color: #161a1c;
    padding: 20px;
    border-radius: 10px;
    /* height: calc(100vh - 265px); */
    min-height: 70vh;
}

.newscase-btn {
    background-color: #c58835;
    padding: 9px 15px;
    border-color: #ffc107;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    border-radius: 10px;
}

.newscase-btn svg path {
    fill: #000;
}

.newscase-btn:hover {
    background-color: #f9b231;
    color: #212529;
}

.newscase-btn:hover svg path {
    fill: #212529;
}

body.dark .newscase-btn {
    background-color: #c58835;
    padding: 9px 15px;
    border-color: #ffc107;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    border-radius: 10px;
}

body.dark .newscase-btn svg path {
    fill: #000;
}

body.dark .newscase-btn:hover svg path {
    fill: #fff;
}

body.dark .newscase-btn:hover {
    background-color: #e99b39;
    color: #fff;
}

.sectionHeading h2 {
    color: #fff;
}

/*
.dashboard-tabs .nav-pills {
    background-color: #0f1318;
    border-radius: 50px;
    padding: 10px;
    width: 50%;
}
*/

.dashboard-tabs .nav-pills .nav-link.active,
.dashboard-tabs .nav-pills .show > .nav-link {
    background-color: #c58835;
    border-radius: 0.375rem;
    color: #0f1318;
}

.dashboard-tabs .nav-item .nav-link {
    color: #fff;
    padding: 10px;
    background: #0f1318;
    margin-left: 10px;
}

/* card design */
.card-image {
    width: 150px;
    /* Adjust width as needed */
    height: auto;
    /* Maintain aspect ratio */
}

.card-content {
    padding: 10px 0;
    padding-top: 50px;
}

.card-heading {
    margin: 0;
    font-size: 1.3rem;
}

.card-description {
    color: #666;
    font-size: 1rem;
    margin: 10px 0 0;
    margin-bottom: 20px;
}

.card-icon-sec {
    display: flex;
    justify-content: space-between;
}

.card-icon-left-box {
    display: flex;
}

.card-icon-box {
    background-color: #15191d;
    width: 60px;
    height: 45px;
    padding: 8px;
    cursor: pointer;
}

.card-icon-2 {
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.cases-card-bg .card {
    background-color: #0f1318;
    padding: 15px;
    border-radius: 5px;
}

.cares-profile {
    background-color: #15191d;
    border-radius: 5px;
    padding: 10px;
    margin-right: 15px;
}

.caes-text h2,
.caes-text p {
    color: #fff;
}

.card-icon-delete {
    width: 50px;
    height: 45px;
    background-color: #ff4747;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cases-date-section {
    background-color: #0f1317;
    padding: 10px;
}

.cases-date-section span {
    color: #fff;
    margin: 0 10px;
}

.serch-filter {
    margin-right: 25px;
}

.pd-input {
    padding: 9px 15px;
}

.pd-button {
    padding: 9px 15px;
    background-color: #c58835;
}

.del-rec {
    background-color: transparent;
    border: none;
}

.cd-icon-box {
    border-left: 1px solid #505050;
}

.res-cas {
    background-color: transparent;
    border: none;
}

.serch-filter .form-control {
    background-color: #1e2028;
    color: #6b7280;
    border: 1px solid #2a2d3a;
}

.logout-button {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid #c58835;
    text-align: center;
    color: #fff;
}

.logout-button button {
    color: #fff;
}

/* ======light dark theme css ======*/

body.dark {
    background-color: #eaefff;
}

body.dark h1,
body.dark h2,
body.dark p,
body.dark .cases-date-section span {
    color: #121214;
}

body.dark .dashboard-tabs .nav-pills {
    background-color: #fff;
    /* border: 1px solid #1E2028; */
}

body.dark .dashboard-tabs .nav-pills .nav-link.active,
body.dark .dashboard-tabs .nav-pills .show > .nav-link {
    background-color: #1e2028;
    color: #fff;
}

body.dark .dashboard-tabs .nav-item .nav-link {
    color: #1e2028;
    background: #e8e8e8;
}

body.dark .light-btn {
    display: none;
}

body.dark .dashbard-card-bg {
    background-color: #fff;
}

body.dark .headersec {
    background-color: #fff;
}

body.dark .cases-card-bg svg path {
    fill: #1e2028;
}

body.dark .card-icon-delete svg path {
    fill: #fff;
}

body.dark .cares-profile {
    background-color: #ebf2ff;
}

body.dark .card-icon-2 {
    border-left: 1px solid #505050;
    border-right: 1px solid #505050;
}

body.dark .cares-profile svg path {
    fill: #6a8ab9;
}

.new-mentu-btn {
    display: none;
}

body.dark .new-mentu-btn {
    display: block;
}

body.dark .profileDropdown .btn-secondary {
    color: #1e2028;
}

body.dark .cases-card-bg .card {
    background-color: #fff;
}

body.dark .cases-date-section {
    background-color: #f6f6f6;
}

body.dark .card-icon-box {
    background-color: #e8e8e8;
    cursor: pointer;
}

body.dark .serch-filter .form-control {
    background-color: #fff;
}

body.dark .sidebarsec {
    background-color: #fff;
}

.sitelogo .secound-logo {
    display: none;
    border-radius: 5px;
}

body.dark .sitelogo .first-logo {
    display: none;
}

body.dark .sidebarsec ul li a {
    color: #080a12;
}

body.dark .sitelogo .secound-logo {
    margin: 0 auto;
    display: block;
}

body.dark .logout-button svg path {
    fill: #080a12;
}

body.dark .logout-button button {
    color: #080a12;
}

body.dark .logout-text {
    color: #080a12;
}

body.dark .dashboard-section-content .card {
    background: #fff;
    color: #212529;
}

.dashboard-section-content .card {
    background: #15191d;
    color: #fff;
}

.dashboard-section-content .table {
    color: #fff;
}

body.dark .dashboard-section-content .table {
    color: #212529;
}

body.dark
    .dashboard-section-content
    table.table.dataTable.table-striped
    > tbody
    > tr:nth-of-type(2n + 1)
    > * {
    color: #212529;
}

.dashboard-section-content
    table.table.dataTable.table-striped
    > tbody
    > tr:nth-of-type(2n + 1)
    > * {
    color: #fff;
}

table.table.dataTable.table-striped > tbody > tr:nth-of-type(2n + 1) > * {
    box-shadow: inset 0 0 0 9999px rgb(163 163 163 / 5%);
}

body.dark
    table.table.dataTable.table-striped
    > tbody
    > tr:nth-of-type(2n + 1)
    > * {
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.05);
}

.card-header {
    border-bottom: var(--bs-card-border-width) solid rgb(133 132 132 / 18%);
}

.dashboard-section-content .active > .page-link,
.page-link.active {
    background-color: #1c2024;
    border-color: #2c2e31;
}

body.dark .dashboard-section-content .active > .page-link,
.page-link.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.dashboard-section-content .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgb(54 57 61 / 25%);
}

body.dark .dashboard-section-content .page-link:focus {
    box-shadow: var(--bs-pagination-focus-box-shadow);
}

.dashboard-section-content .page-link {
    color: #c58835;
}

body.dark .dashboard-section-content .page-link {
    color: #0d6efd;
}

.dashboard-section-content .active > .page-link,
.page-link.active {
    color: #c58835;
}

body.dark .dashboard-section-content .active > .page-link,
.page-link.active {
    color: #fff;
}

.logout-text {
    color: #fff;
}

.checkbox {
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    border: 1px solid #747474;
    background-color: #111;
    width: 60px;
    height: 28px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-moon {
    color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
    transform: translateX(30px);
}

#eye-icon {
    position: absolute;
    right: 10px;
    top: 65%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 25px;
}

#eye-icon:hover {
    opacity: 0.8;
}

/* 05 Sep 2025 */
.treei-tolls-list-sidebar h3 {
    font-size: 30px;
    text-align: center;
    color: white;
    margin: 0;
    padding: 20px 0;
}
body.dark .treei-tolls-list-sidebar h3 {
    color: black;
}
.treei-tolls-list-sidebar > p {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 16px;
    padding: 0px 15px 24px;
    margin: 0;
}
.targets-filter-bx {
    padding: 0px 15px;
    overflow: auto;
    max-height: calc(100dvh - 400px);
}
.targets-filter-bx .treei-tolls-list-item {
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 9px 0px;
    font-size: 18px;
}
.targets-filter-bx .treei-tolls-list-item p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
span.clr-round {
    width: 22px;
    height: 22px;
    display: block;
    background: gray;
    border-radius: 50%;
}
span.clr-round.red {
    background-color: red;
}
span.clr-round.blue {
    background: blue;
}
span.clr-round.green {
    background: green;
}
span.clr-round.orange {
    background: orange;
}
span.clr-round.purple {
    background: purple;
}
span.clr-round.cyan {
    background: cyan;
}
span.clr-round.indigo {
    background: indigo;
}
span.clr-round.tomato {
    background: #e0a29c;
}
.targets-filter-bx .treei-tolls-list-item .right-checkbox-bx input {
    display: none;
}
.targets-filter-bx
    .treei-tolls-list-item
    .right-checkbox-bx
    label.checkbox-filter-bx {
    width: 25px;
    height: 25px;
    border: 1px solid #c58835;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.targets-filter-bx
    .treei-tolls-list-item
    .right-checkbox-bx
    input:checked
    ~ label.checkbox-filter-bx {
    background: #c58835;
}
.targets-filter-bx
    .treei-tolls-list-item
    .right-checkbox-bx
    input:checked
    ~ label.checkbox-filter-bx:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3e%3cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3e%3cpath d='M5 12l5 5l10 -10' /%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-position: center;
}
a.link {
    color: white;
    text-decoration: none;
}
section.map-section {
    position: relative;
    height: calc(100dvh - 300px);
    width: 100%;
}
#map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 5px;
    box-shadow: 0 0 3px rgb(0, 0, 0, 0.25);
}
.custom-controls-map {
    z-index: 9999;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.custom-controls-map button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    background: white;
}

.custom-range input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 95%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 12px;
    background: #cccccc;
}
.custom-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 36px;
    width: 36px;
    background-color: #c58835;
    border-radius: 50%;
    border: none;
    transition: 0.2s ease-in-out;
}
.custom-range input[type="range"]::-moz-range-thumb {
    height: 36px;
    width: 36px;
    background-color: #c58835;
    border-radius: 50%;
    border: none;
    transition: 0.2s ease-in-out;
}
.custom-range {
    position: absolute;
    width: calc(100% - 40px);
    bottom: 20px;
    padding: 5px 20px;
    left: 0;
    right: 0;
    background: #15191d;
    margin: 0px auto;
    max-width: 780px;
    border-radius: 10px;
    z-index: 9999;
}

body.dark .custom-range .calendar-icon {
    font-size: 30px;
    color: #212529;
    cursor: pointer;
}

.custom-range .calendar-icon {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.range-slider-box {
    display: flex;
    font-size: 14px;
    color: white;
    justify-content: space-between;
}
body.dark .custom-range {
    background-color: white;
    z-index: 9999;
}
body.dark .range-slider-box {
    color: black;
}

.email-error ul {
    padding-left: 0px;
}

.email-error ul li {
    list-style: none;
    color: #b33434;
}

.forgot-password-d {
    text-align: right;
    margin: 0px 0 15px 0;
}

.forgot-password-link {
    text-decoration: none;
    color: #f09114;
    font-weight: 400;
}

.forgot-password-link:hover {
    color: #e18000;
}

.btn-danger-fix {
    background-color: #ff2b2b;
}
.btn-danger-fix:hover {
    border: 1px solid #ff2b2b;
    color: #ff2b2b;
}

.signin-error {
    padding: 10px 0 10px 0px;
}
.signin-error ul {
    list-style: none;
    margin-bottom: 0px;
    padding-left: 10px;
}

.case-share-link {
    color: #fff;
}

body.dark .case-share-link {
    color: #1e2028;
}

.delete-message {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

/* create new case css */
.new-card-form {
    background: #161616;
}

body.dark .new-card-form {
    background: #fff;
}

body.dark .create-case-container .case-name {
    color: #121214;
}

.create-case-container .case-name {
    color: #aaaaab;
}

.create-case-container .title {
    padding: 25px;
}

body.dark .create-case-container .title p {
    font-size: 25px;
    font-weight: 500;
    position: relative;
    color: #121214;
}

.create-case-container .title p {
    font-size: 25px;
    font-weight: 500;
    position: relative;
    color: #aaaaab;
}

.create-case-container .title p::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #f37a65, #d64141);
}

body.dark .create-case-container .info-box {
    background: #fff6ea;
    border-left: 4px solid #fda732;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: #8d5f20;
}

.create-case-container .info-box {
    background: #2f2f2f;
    border-left: 4px solid #734e00;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: #c9a068;
}

body.dark .create-case-container input {
    width: 100% !important;
    padding: 0.95rem 1.1rem !important;
    border: 2px solid #f0d5b1 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: "Inter", sans-serif !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #f8fdfb !important;
    color: #1a2e27 !important;
}

.create-case-container input {
    width: 100% !important;
    padding: 0.95rem 1.1rem !important;
    border: 2px solid #f0d5b1 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: "Inter", sans-serif !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #4b4b4b !important;
    color: #1a2e27 !important;
}

.create-case-container input:focus {
    outline: none !important;
    border-color: #e7ae5e !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(139, 111, 34, 0.1),
        0 2px 8px rgba(209, 153, 33, 0.08) !important;
    transform: translateY(-1px) !important;
}

.create-case-container input:hover {
    border-color: #e7ae5e !important;
}

.create-case-container input {
    width: 100% !important;
    padding: 0.95rem 1.1rem !important;
    border: 2px solid #2a2d3a !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: "Inter", sans-serif !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: #1e2028 !important;
    color: #6b7280 !important;
}

.create-case-container .submit-btn {
    height: 45px;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(to right, #e7ae5e, #c37a16);
    border-radius: 5px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.create-case-container .submit-btn:hover {
    background: linear-gradient(to right, #c37a16, #e7ae5e);
}

.create-case-container .cancel-btn {
    height: 45px;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(to right, #f37a65, #d64141);
    border-radius: 5px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.create-case-container .cancel-btn:hover {
    background: linear-gradient(to right, #d64141, #f37a65);
}

body.dark
    .dashboard-section-content
    table.table.dataTable.table-striped
    > tbody
    > tr:nth-of-type(2n + 1)
    > * {
    color: #040404;
}

.dashboard-section-content
    table.table.dataTable.table-striped
    > tbody
    > tr:nth-of-type(2n + 1)
    > * {
    color: #040404;
}

.login-help-text {
    font-size: 13px;
}

.login-help-text:hover {
    font-size: 13px;
    font-weight: 500;
    cursor: help;
}

.marker.red {
    background: red;
    border-radius: 50%;
}
.marker.blue {
    background: blue;
    border-radius: 50%;
}
.marker.green {
    background: green;
    border-radius: 50%;
}
.marker.orange {
    background: orange;
    border-radius: 50%;
}
.marker.purple {
    background: purple;
    border-radius: 50%;
}
.marker.indigo {
    background: indigo;
    border-radius: 50%;
}

.calendar {
    border: 1px solid #ccc;
    background: #fff;
    padding: 10px;
    position: absolute;
    z-index: 1000; /* Ensure it sits above other elements */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-icon {
    cursor: pointer;
}


/* Mobile View (max-width: 768px) */
@media only screen and (max-width: 767px) {
    /* Styles for mobile devices */

    /* login css start */
    .login-bg {
        background-image: url(../images/bg-image.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        height: 80vh;
        padding: 10px;
    }

    .login-logo img {
        width: 60px;
    }

    .login-left-image {
        display: none;
    }

    .form-bg {
        background-color: #fff;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
            rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        padding: 100px 50px;
        width: 100%;
        border-radius: 15px;
    }

    .login-bg .container-fluid .justify-content-center {
        justify-content: normal !important;
        margin-top: 20px;
    }
}

/* Tablet View (min-width: 769px) and (max-width: 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Styles for tablet devices */
    .login-left-image {
        display: none;
    }

    .login-bg .container-fluid .justify-content-center {
        justify-content: normal !important;
        margin-top: 20px;
        width: 90%;
        margin-left: 50px;
    }
}

/* Desktop View (min-width: 1025px) */
@media only screen and (min-width: 1025px) {
    /* Styles for desktop devices */
}
