/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    color: #6d6d6d !important;
}



:root { 
    --border-radius : 5px;

    --primary-color : #25a23f;
    --primary-color-varient : #1c9935;

    --secondary-color : #36404a;
    --secondary-color-varient : #2b323a;

    --heading-color : #505458;

    --grey-color : #36404a;
    --grey-color-varient : #2b323a;

    --red-color : #ff5b5b;
    --red-color-varient : #fc5454;

    --green-color : #25a23f;
    --label-color : #797979;

    --danger-color : #ff5b5b;

    --blue-color : #4CB9FF;

    --anchor-blue-color : #349ada;

    --orange-color : #FD841F;
}

h1 , 
h2 , 
h3 , 
h4 , 
h5 , 
h6 {
    font-family: Karla,sans-serif;
    color : var(--heading-color);
}

h3,
.h3 {
    font-size: 24px;
}

.folder {
    font-weight: 400;
}

.btn-bulk {
    background-color: rgb(247, 247, 247);
    cursor: not-allowed;
}

.btn-light {
    background-color: rgb(247, 247, 247) !important;
}

.btn-filter-light{
    background-color: rgba(240, 240, 240)!important;
    border: 1px solid rgba(218,230,236,.7)!important;
}
.btn-filter-light:hover{
    background-color: rgba(199, 220, 231, 0.5)!important;
    border: 1px solid rgba(209, 226, 235, 0.7)!important;
}

.btn-blue {
    background-color: #188ae2!important;
    color: white !important;
}
.btn-blue:hover {
    background-color: #187cc9!important;
}

.btn-blue-outlined {
    border: 1px solid var(--blue-color);
    background-color: white;
    color: var(--blue-color);
}
.btn-blue-outlined:hover {
    border: 1px solid var(--blue-color);
    background-color: var(--blue-color);
    color: white;
}

.btn-primary-outlined {
    border: 1px solid var(--primary-color);
    background-color: white;
    color: var(--primary-color);
}
.btn-primary-outlined:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.btn-text-small {
    font-size: 12px !important;
}

.btn-text-large {
    font-size: 17px !important;
    font-weight: 500 !important;
}

.bg-danger {
    background : var(--danger-color) !important;
    color: white;
}

.bg-secondary {
    background : var(--label-color) !important;
    color: white;
}
.bg-secondary:hover {
    color: white;
}

.bg-primary {
    background-color: var(--primary-color);
}
.bg-primary:hover {
    color: white;
}

.bg-dark {
    background : var(--secondary-color) !important;
}

.bg-blue {
    background : var(--blue-color) !important;
}
.bg-orange {
    background : var(--orange-color) !important;
}

.bg-grey-100 {
    background: #f3f3f3;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--heading-color) !important;
}

.text-sm {
    font-size: 12px;
}

.msgDiv {
    padding-block: 20px !important;
    padding-inline: 30px !important;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 15px;
}

.remove-outline {
    outline: none !important;
}

.rotate {
    width: 100px;
    animation: rotation 2s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}


.select2 {
    width: 100% !important;
}


/* Select2 Multiselect placeholder text styling and placement */
.select2-container--default .select2-selection--multiple .select2-search__field::placeholder {
    color: #a0a0a0;
    font-style: italic;
}
.select2-container--default .select2-selection--multiple .select2-search__field {
    margin-top: 8px !important;
}

.select2-container--default .select2-selection--single{
    height: 38px !important;
    padding-top : 4px; 
    font-size: 14px;  
    text-align: left !important;
    position: relative;
}

.select2-container--default .select2-selection--multiple {
    min-height: 38px !important;
    border: 1px solid #e3e3e3;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #acacac;
}

.select2-container--default .select2-selection--multiple:before {
    content: ' ';
    display: block;
    position: absolute;
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    height: 0;
    right: 8px;
    margin-left: -4px;
    margin-top: -3px;top: 50%;
    width: 0;
    cursor: pointer;
}


.select2-container--default .select2-selection--single {
    border: 1px solid #e3e3e3 !important;
}

.select2-container--open .select2-selection--multiple:before {
  content: ' ';
  display: block;
  position: absolute;
  border-color: transparent transparent #888 transparent;
  border-width: 0 6px 8px 6px;
  height: 0;
  right: 8px;
  margin-left: -4px;
  margin-top: -3px;top: 50%;
  width: 0;
  cursor: pointer;
}

.r-pl{
    padding-left: 0px !important;
}


/* =========================================================================================== */
/* =========================================================================================== */

/* ---   AUTH SCREENS  ------------------------ */

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-10%);
        opacity: 0%;
    }
    100% {
        transform: translateX(0);
        opacity: 100%;
    }
}

.auth-layout-wrap{
    background: linear-gradient(180deg, var(--primary-color) 45%, rgb(240, 240, 240) 45%) !important;
}

.auth-div {
    animation: 0.5s ease-out 0s 1 slideInFromLeft;
    background: #292929;
    /* border: 1px solid lightgray; */
    /* box-shadow: 5px 7px 10px 1px rgb(0, 0, 0, 0.2); */
}

.auth-top-text {
    color: white;
    font-size: 24px;
    letter-spacing: 3px;
}

.auth-custom-field{
    border-radius: 0 !important;
    padding: 25px 20px !important;
    font-size: 14px;
}

.auth-custom-field::placeholder {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-auth{
    padding-block: 14px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.auth-bottom-text{
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.auth-bottom-text:hover {
    color: white;
}

.invalid-feedback-visible {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #f44336; 
}

/* =========================================================================================== */
/* =========================================================================================== */

select option {
    padding-block: 20px !important;
}

table {
    color: #797979 !important;
    font-size: 13px;
}

.alert > ul {
    list-style-type: none;
    margin-block: 0.3rem;
    padding-left: 20px;
}

.alert li {
    font-weight: 500;
}

.navbar-nav.custom {
    font-size: 14px; 
    font-weight: 400;
}

.nav-link-tab {
    font-family: 'Karla',sans-serif;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
}



/* This is for black bar at the top of pages */
.top-header {
    display: block;
    background-color: var(--grey-color);
    padding: 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* ===================================================================== */
/* ===================================================================== */

/* {{-- Background color for expanding element is #36404a --}} */

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f4f8fb!important;
}

.app-footer {
    border-radius: 0;
    padding-inline: 35px;
    border-top: 2px solid rgb(224, 224, 224); 
    display: flex; 
    align-content: center; 
    padding-block: 30px;
}

.page-heading {
    font-family: 'Karla', sans-serif;
    font-size: 20px;
    font-weight: 700 !important;
    color: var(--heading-color);
}

.card-box {
    padding: 15px 30px 15px 30px !important;
    background-color: var(--grey-color);
    cursor: pointer;
}

.card-box-small-rounded {
    padding: 10px 30px 10px 30px !important;
    background-color: var(--grey-color);
    cursor: pointer;
    border-radius: 5px;
}

.card-box:hover {
    background-color: var(--grey-color-varient);
}

.card-heading {
    font-family: 'Karla' , 'sans-serif';
    color: white;
    font-size: 18px;
}

.my-card-body {
    padding: 20px 20px 20px 20px !important;
    background-color: white !important;
    text-align: right !important;
}

.my-card-body-left {
    padding: 20px 20px 20px 20px !important;
    background-color: white !important;
    text-align: left !important;
}

/* ======================================================================= */
/* Media  */

@media screen and (max-width: 991px) {
    .my-card-body {
        text-align: left !important;
        padding: 20px 30px 20px 30px !important;
    }
}

/* ======================================================================= */


.my-card-body .row {
    margin-bottom: 15px;
}
.my-card-body-left > .row {
    margin-bottom: 15px;
}

.card-body {
    background-color: white !important;
    border-radius: 5px;
}

.display-none {
    display: none;
}

.card-container {
    margin-bottom: 5px;
}

.custom-field,
.custom-text-field,
.custom-field-inline {
    outline: none !important;
    display: block;
    border: 1px solid #e3e3e3;
    padding-inline: 10px;
    border-radius: 5px;
    color: #565656;
    font-size: 14px;
}

.custom-text-field {
    min-height: 100px;
    padding-top: 5px;
    width: 100% !important;
    max-width: 100% !important;
}

.custom-field {
    height: 38px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.custom-field-inline {
    background: white !important;
    height: 38px !important;
    width: -webkit-fill-available;
    outline: none;
}

.simulated_dropdown {
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 98;
    background: white;
    border: 1px solid #e3e3e3;
    box-shadow: 8px 8px 9px -2px rgba(191,191,191,0.75);
    overflow-y:scroll;
}

.simulated_dropdown_option {
    cursor: pointer;
    padding : 10px;
    border-bottom: 1px solid #e3e3e3;
}

.simulated_dropdown_option:hover {
    background: var(--primary-color);
    color : white;
}

.temphighlight {
    background-color: #1c9935 !important;
}

.form-control:focus {
    border-color: #FF0000;
    box-shadow: none !important;
}

.custom-field-inline-right{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.custom-field-inline-left{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.btn-inline {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.btn-green {
    background-color: var(--green-color);
    color: white;
    height: 38px !important;
}
.btn-green:hover {
    color: white;
}

.custom-field:focus,
.custom-text-field:focus,
.custom-field-inline:focus {
    outline: none !important;
    border: 1px solid #acacac;
    border-radius: 5px;
}

.inline-group {
    display: flex;
}

.label-style,
.dataTables_filter label,
.dataTables_length label {
    color: var(--label-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
}



.btn-full-width {
    display: block;
    width: 100%;
    box-shadow: none !important;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500 !important;
}

.btn-fill-all {
    display: block;
    width: 100%;
    box-shadow: none !important;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500 !important;
}

.btn-fill-all:hover {
    background-color: #3d9c40;
}

.add-client {
    height: 100% !important;
    padding-inline: 40px !important;
    background-color: dodgerblue !important;
    color: white !important;
}

.add-client:hover {
    background-color: #0a7ff0 !important;
}

.btn-dark-custom {
    background-color: #36404a;
    color: white ;
    box-shadow: none !important;
}
.btn-dark-custom:hover {
    background-color: #313840;
    color: white ;
}
.btn-dark-custom:focus {
    border-radius: 0px !important;
}

.btn, .dt-buttons > button {
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.dt-buttons > button {
    color: white !important;
    background: var(--primary-color) !important;
    margin-bottom: 10px;
}

.btn-large {
    font-size: 17px !important;
    font-weight: 500 !important;
    padding-block:10px !important;
}

.disabled {
    cursor: not-allowed;
    background: rgba(199, 199, 199, 0.281) !important;
}

.btn  .fa-solid, 
.btn  .fa-regular,
a  .fa-solid, 
a  .fa-regular{
    padding-left: 5px;
}


.my-dropzone {
    opacity: 0;
   position: absolute;
   z-index: -1;
}

.my-dropzone-div {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 200px;
    border: 2px solid #e3e3e3;
    text-align: center;
    padding-top: 60px;
    font-size: 13px !important;
    color: rgb(160, 160, 160) !important;
}


.placeholder-sm::placeholder {
    font-size: 12px !important;
}

.remove-outline:focus{
    outline: none;
}


/* ================================================================================ */
/* This is for IOS style radio buttons START*/
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 35px;
    background-color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    border: 1px solid #d8d8d8;
}

input[type="checkbox"] + label::before {
    content: "";
    display: inline-block;
    width: 29px;
    height: 29px;
    border-radius: 100%;
    background-color: white;
    position: absolute;
    top: 2px;
    right: 26px;
    transition: all 0.2s ease-out;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    box-shadow: rgba(67, 71, 85, 0.4) 1px 0px 0.25em, rgba(90, 125, 188, 0.2) 1px 0.5em 1em;
}

input[type="checkbox"]:checked + label {
    background-color: #25a23f;
}

input[type="checkbox"]:checked + label::before {
    right: 4px;
}

/* This is for IOS style radio buttons END */


/* Search Company Popup */
/* ==================================================================================== */

.s-company-div {
    background-color: #f4f4f4;
    padding: 20px;
    cursor: pointer;
}

.s-company-div:hover {
    background-color: #0a7ff0;
    color: white !important;
}

.s-company-name {
    font-size: 16px;
    font-weight: 600;
}

.s-company-description {
    font-size: 14px;
}

.page-link { 
    color: var(--label-color);
}
.page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.white-space-pre-wrap {
    white-space: pre-wrap;
}





/* =========================================================== */
/* Datatable Search Input Field  */

.dataTables_filter {
    margin-bottom: 10px;
}

.dataTables_filter input,
.dataTables_length select {
    height: 38px !important;
    outline: none !important;
    border: 1px solid #e3e3e3 !important;
    padding-inline: 10px;
    color: #565656;
    font-size: 14px;
}

.dataTables_filter input:focus {
    /* outline: none !important; */
    border: 1px solid #acacac !important;
    /* border-radius: 5px; */
}

/* dataTables CSS modification & positioning */
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  right: 0 !important;
  content: "" !important;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  right: 0 !important;
  content: "" !important;
}



table.dataTable thead th {
    position: relative;
    background-image: none !important;
}
  
table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
    position: absolute !important;
    top: 12px !important;
    right: 8px !important;
    display: block !important;
    font-family: FontAwesome !important;
    opacity: 1 !important;
}
table.dataTable thead th.sorting:after {
    content: "\f338" !important;
    color: rgb(153, 153, 153) !important;
    font-size: 0.9em !important;
    padding-top: 0.12em !important;
}
table.dataTable thead th.sorting_asc:after {
    content: "\f161" !important;
}
table.dataTable thead th.sorting_desc:after {
    content: "\f160" !important;
}


/* ========================================================================== */

.textarea-text {
    white-space: pre-wrap !important;
}


.vertical-align-center {
    margin-top: auto;
    margin-bottom: auto;
}

.more {
    display: none;
}

#snow-editor {
    height: 400px !important;
}
#signature-editor {
    height: 100px !important;
}


.circle-img {
    border-radius: 99px;
}

/**********************************    Overview Styling *************************************/

#Overview .row .label-style,
#Overview .row .col-right {
    border-bottom: 1px solid #c5c5c5;
    display: block;
    text-align: end;
    padding-right: 10px;
   
}
#Overview .row .col-right {
        text-align: start;
}

#Overview .row label {
    margin: 0;
}


div.dataTables_processing {
    position: fixed !important;
    z-index: 990 !important;
}

.ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    min-height : 300px;
}


.ck-rounded-corners .ck.ck-editor__main>.ck-editor__editable, .ck.ck-editor__main>.ck-editor__editable.ck-rounded-corners {
    min-height : 300px;
}

.reset-button {
    background-color: transparent;
    border-width: 0;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    /* padding: 0; */
}

.custom_a, .custom_a:hover {
    font-size: 17px;
    font-family: 'Karla', sans-serif;
    font-weight: 500 !important;
    color: var(--anchor-blue-color);
    text-decoration: underline;
}
.custom_a:hover {
    color: var(--blue-color);
}

.text-blue {
    color: var(--blue-color);
}

.input-field-copy {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    height: 35px;
    max-height: 35px;
    align-items: center!important;
}

.icon-btn {
    padding: 8px !important;
    border-radius: 5px;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
}

.icon-btn > i {
    padding: 0 !important;
}

.icon-btn-blue-outlined {
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
}
.icon-btn-blue-outlined:hover {
    background-color: var(--blue-color);
    color: white;
}

.icon-btn-green-outlined {
    border: 1px solid var(--green-color);
    color: var(--green-color);
}
.icon-btn-green-outlined:hover {
    background-color: var(--green-color);
    color: white;
}

.icon-btn-green {
    border: 1px solid var(--green-color);
    background-color: var(--green-color);
    color: white;
}
.icon-btn-green:hover {
    background-color: var(--green-color);
    color: white;
}

.hover-seperator:hover {
    font-weight : 700;
}

.my-custom-event-box{
    background-color: white !important;
    color: black !important;
    border: 1px solid #dddddd !important;
    font-size: 12px !important;
    cursor: pointer;
}

.is_chargeable_time {
    border-left: 4px solid var(--danger-color) !important;
}
.is_not_chargeable_time {
    border-left: 4px solid var(--blue-color) !important;
}

.timesheet-legend-color-div {
    width: 35px;
    height: 20px;
    border-radius: 12px;
    margin-right: 10px;
}

.my-custom-event-box-circle {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.danger-color {
    background : var(--danger-color) !important;
}
.danger-color-text {
    color : var(--danger-color) !important;
}
.blue-color {
    background : var(--blue-color) !important;
}
.bg-none {
    background-color: #f8f8f8;
}

#calendar {
    position: relative;
  }

#loading-spinner {
    padding: 20px;
    display: none;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background: rgb(233, 233, 233)
}

.progress-note-history-container {
    overflow: auto;
    height: 300px;
}

.progress-note-history-div {
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-right: 4px;
}

.light-gray-background {
    background-color : rgb(241, 241, 241) !important;
}

.no-word-break {
    white-space: nowrap;
}


#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.spinner-inside {
    z-index: 9999999; 
    color: white !important
}

.action-btn {
    padding: 8px 14px;
    color: white;
    border-radius: 4px;
}

.action-btn>i {
    padding: 0 !important;
}

.tenant-logo {
    height: 45px !important; 
    width: auto !important; 
    max-width: fit-content !important;
}

.dragging {
    background-color: #f0f0f0; /* Change background color of dragging row */
    opacity: 0.6; /* Reduce opacity of dragging row */
    cursor: move; /* Change cursor to indicate draggable element */
}

.row-dragable tbody tr {
    cursor: grab;
}

.table-header {
    background-color: #313840;
}

.table-header-text {
    text-decoration: none !important;
    font-size: 14px !important;
    color: white;
}

.client-filter-btn {
    width: 100%;
    background-color: rgb(247, 247, 247);
    border: 1px solid rgb(236, 236, 236);
    padding-block: 10px;
    padding-inline: 20px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 5px;
}

.client-filter-btn:hover {
    background-color: rgb(246, 253, 255);
}

/* =================================================== */
/* =================================================== */

.dark-dropdown-menu {
    background-color: var(--secondary-color);
}

.dark-dropdown-menu .dropdown-item {
    color: white;
}
.dark-dropdown-menu .dropdown-item:hover {
    background-color: var(--secondary-color-varient);
    color: white;
}

.dark-dropdown-menu a {
    color: white;
}

.dark-dropdown-menu .delete-bookmark {
    color: white;
    font-weight: 600;
}
.dark-dropdown-menu .delete-bookmark:hover {
    background-color: var(--danger-color);
}

.dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:focus {
    outline: 0;
    background-color: var(--secondary-color-varient);
    color: white;
}

/* ===================================================== */

.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
}

table {
    width: 100%;
}


/* ============================================ */
/* Task Filter Styling */

.task-filter-row .task-filter-col-1 {
    padding-right: 0;
}
.task-filter-row .task-filter-col-2{
    padding-left: 0;
}

.task-filter-row .label-container{
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #ededed;
    color: #404040;
    max-height: 38px !important;
    height: 38px !important;
}
.task-filter-row .task-filter-label {
    text-align: left;
    padding-left: 10px;
    margin: 0 !important;
}

/* ============================================ */
/* ============================================ */
/* Task Filter Advance Seach Button styles */

.dropdown-btn {
    width: 100% !important;
    background-color: white;
    border: 1px solid lightgray;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    outline: none;
    height: 38px !important;
    display: flex;
    align-items: center; /* Vertical center alignment */
    justify-content: space-between;
    border-radius: 5px;
    color: #565656;
    font-size: 14px;
}

.dropdown-btn:focus {
    outline: none;
}

.dropdown-btn:hover {
    background-color: var(--grey-color);
    color: white;
}

.dropdown-btn.clicked {
    background-color: var(--grey-color);
    color: white;
}

.arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
}

/* Rotate the arrow when the button is clicked */
.dropdown-btn.clicked .arrow {
    transform: rotateX(180deg);
}

.filter-tags {
    padding-block: 5px;
    padding-left: 15px;
    padding-right: 25px;
    margin-right: 8px;
    margin-bottom: 10px;
    background-color: var(--anchor-blue-color);
}

.badge-with-close-btn {
    position: relative;
    display: inline-block;
}

.badge-with-close-btn:after {
    content: "\00d7"; /* Unicode character for '×' (times) */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}


/* ========================================================= */
/* ========================================================= */

.custom-dropdown-with-icon i {
    margin: 0;
    padding-left: 0 !important;
}

.custom-dropdown-with-icon .dropdown-item {
    padding-inline-start: 0 !important;
}

.custom-dropdown-with-icon .dropdown-item i {
    padding-inline: 15px !important;
    font-size: 18px;
}
.custom-dropdown-with-icon .dropdown-item .inner-icon-container {
    width: 30px !important;
}
.custom-dropdown-with-icon .dropdown-item:hover {
    background-color: #dddddd;
}

.custom-dropdown-btn:focus {
    outline: none;
}
.custom-dropdown-btn {
    border-radius: 5px;
    width: 40px;
    height: 40px;
}

.dropleft .dropdown-toggle::before {
    position: absolute;
    right: 3px !important;
    bottom: 3px !important;
    transform: rotate(225deg);
}

.dropdown.no-dropdown-arrow .dropdown-toggle::after {
    display: none;
}

.text-urgent-notes {
    font-size: 14px;
    color: var(--danger-color);
}

.tooltip-inner {
    text-align: left;
}


.task_row_style {
    background-color: white; 
    margin-bottom: 10px;
    border-radius: 5px;
    border: 2px solid transparent;
}

.task_row_style b {
    color: rgb(41, 41, 41);
}

.task_row_style:hover {
    border: 2px solid #8d8d8d;
    box-shadow: 0px 5px 5px rgba(116, 116, 116, 0.2); /* Shadow effect */
}

.date-range-type-btn {
    display: flex;
    gap: 5px;
    border: 1px solid #e5e5e5;
}

/* ================================================= */
/* Page Notifications // Notificaiton on top of page */
.page-notification {
    padding: 10px 15px;
    border-left :4px solid #740007;
    color: #740007;
    font-size: 12px !important;
}

.page-notification.green {
    background-color: var(--green-color);
}
.page-notification.grey {
    background-color: var(--label-color);
}
.page-notification.red {
    background-color: #ffadad;
}
.page-notification.blue {
    background-color: var(--blue-color);
}

.page-notification .notification-datetime {
    font-style: italic;
    font-weight: 400 !important;
}

/* ============================================================================ */

.btn-no-decoration {
    border: none;
    outline: none;
}
.btn-no-decoration:focus {
    border: none;
    outline: none;
}

.reverse-inner-row .row {
    flex-direction: row-reverse !important;
}

.placeholder-italic::placeholder {
    font-style: italic;
}