@import url('https://fonts.googleapis.com/css2?family=Cabin&family=EB+Garamond&family=Lato:wght@300;400&display=swap');
:root {
    --primary:#d0a858;
    --dark:#141414;
    --dark-lighten:#1e1e1e;
    --dark-lighten-1:#1f1f1f;
    --dark-lighten-2:#313131;
    --dark-ligthen-3:#303030;
    --dark-ligthen-4:#1d1d1d;
    --light:#e2e2e2;
    --light-darken:#a5a5a5;
    --dark-red:#cd6578;
    --grey:#a1a1a1;
    --grey-1:#e2e2e2;
    --grey-2:#737373;
    --grey-3:#adadad;
    --light-green:#01a299;
    --litepicker-container-months-color-bg: #333 !important;
    --litepicker-month-header-color: #a9a9a9;
    --litepicker-day-color: #e2e2e2;
    --litepicker-is-in-range-color: #d0a858;
    --litepicker-is-today-color: #d0a858;
    --litepicker-is-start-color-bg: #d0a858;
    --litepicker-is-end-color-bg: #d0a858;
    --litepicker-tooltip-color-bg: #303030;
    --litepicker-day-color-hover: #d0a858;
    --litepicker-highlighted-day-color: #303030;
}

*{
    color: var(--light);
    background-color: transparent;
    font-family: 'Lato', sans-serif;
}

img{
    background-color: transparent;
}

#deactivate_account_text,#welcome_title{
    font-family: 'Lato', sans-serif;
    font-weight: 300;

}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #555;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


h1, h2, h3, h4, h5, h6{
    font-family: 'Cabin', sans-serif;
}

.text-light{
    color: var(--light);
}

.text-primary-color{
    color:#d0a858;
}

.text-light-darken{
    color: var(--light-darken);
}

.text-grey{
    color: var(--grey);
}

.text-light-green{
    color: var(--light-green);
}

.text-active-color{
    color: #01a299;
}

.text-inactive-color{
    color: #cf6679;
}

.text-active-green-color{
    color: #7dbe66;
}

.bg-dark-lighten{
    background-color: var(--dark-lighten);
}

/* ========= FORM INPUTS ================== */
.form-input{
    background-color: var(--dark-lighten-2);
    border:0;
    border-radius: 2px;
    padding:10px;
    width: 100%;
    color: var(--light);
    line-height: 30px;
}


.form-label {
    position: absolute;
    top: 11px;
    left: 25px;
    pointer-events: none;
    transition: 0.2s ease;
    font-weight: 400;
    color: #888;
    z-index: 10;
}


/* select.form-input:focus + .form-label,
select.form-input:not(:placeholder-shown) + .form-label {
    top: -5px;
    font-size: 12px;
    color:#d0a858;
    z-index: 10;
}*/

.form-input:focus{
    box-shadow: 0 2px #d0a858; /* Add box-shadow on focus */
    padding-top: 10px;
}

.input-has-value {
    box-shadow: 0 2px var(--grey); /* Add box-shadow on focus */
    background-color: #000000;
    padding-top: 10px;
}


.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -1px;
    font-size: 12px;
    color:#d0a858;
    z-index: 10;
}

.form-input:not(:focus) + .form-label {
    color: #888;
}

.form-input::placeholder {
    color: transparent; /* Hide the placeholder text */
}

.form-input:focus::placeholder {
    color: transparent; /* Restore the placeholder text color on focus */
}

.form-input:focus{
    outline: none;
    background: #000000;
}



select.form-input,
select.form-input:focus{
    padding-top: 15px;
}


select:focus{
    outline: none;
    padding-top: 15px;
}

.form-search{
    background-color: var(--dark-lighten);
    border:0;
    border-radius: 4px;
    padding: 13px;
    width: 100%;
    color: var(--light) ;
    box-shadow: 1px 4px 1px #0f0f0f;
    width: 100%;
}

.form-search:focus{
    outline: none;
    border-bottom: 2px solid var(--grey);
    /* background-color: #000000; */
}

.search-icon{
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 27 !important;
}


.search-close-icon{
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 20 !important;
}

.view-center{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


a,a:hover{
    text-decoration: none;
    color: var(--light);
}

.pointer{
    cursor: pointer;
}

.card{
    background-color: var(--dark-lighten);
    border-radius: 4px;
}

/* ========= BUTTONS ================ */
.btn{
    background-color:#d0a858;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.25px;
    width: 100%;
    transition: 0.1s;
    font-family: 'Lato', sans-serif;
}

.btn-transparent{
    background-color: transparent;
    border: 0;
    color: var(--light);
}



.btn-transparent-w-border-red{
    background-color: transparent;
    border: 2px solid #cf6679;
    color: #cf6679;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
}

.btn:focus,.btn:active{
    outline: none;
    box-shadow: none;
}

.btn-transparent-primary{
    background-color: transparent;
    border: 1px solid#d0a858;
    color:#d0a858;
    border-radius: 5px;
    padding:10px;
    cursor: pointer;
}

.btn-grey-out-outline{
    color: var(--dark-lighten-2);
    background-color: transparent;
    border: 2px solid var(--dark-lighten-2);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
}

.btn-light-outline{
    color: #FFFFFF;
    background-color: transparent;
    border: 2px solid var(--dark-lighten-2);
    text-transform: uppercase;
    font-size: 13px;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    letter-spacing: 1.25px;
    font-size: 14px;
}

.btn-grey-out-primary{
    background:  rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.01);
    color: var(--grey-2);
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    letter-spacing: 1.25px;
    padding:5px;
    cursor: pointer;
}

a.btn-grey-out-primary{
    color: var(--grey-2);
}

.btn-transparent-primary:focus,
.btn-transparent-primary:active,
.btn-transparent-primary:hover{
    outline: none;
    box-shadow: none;
    color:#d0a858;
}


/* ========= CUSTOM STYLES ========= */
.alert{
    background-color: var(--dark);
    font-family: 'Lato', sans-serif;
    color: var(--dark-red);
    border-radius: 4px;
    font-size: 14px;
}


.h-100vh{
    height: 100vh;
}

.pointer{
    cursor: pointer;
}

.btn-primary{
    background-color:#d0a858 !important;
}

/* ========= MODALS ========= */
.action-modal{
    background-color: var(--dark-lighten);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    padding: 10px;
    border-radius: 10px;
    animation: promptAnimation 0.2s ease-in;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.logout-modal{
    background-color: var(--dark-lighten);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    padding: 10px 35px;
    border-radius: 5px;
    animation: promptAnimation 0.2s ease-in;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.20),
                0px 1px 18px 0px rgba(0, 0, 0, 0.12),
                0px 6px 10px 0px rgba(0, 0, 0, 0.14);
}

.logout-modal h6{
    font-size: 18px;
}


.prompt-link{
    background-color: transparent;
    border: 0;
    color:#d0a858;
    text-transform: uppercase;
}

.action-modal-closed{
    background-color: var(--dark-lighten);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    padding: 10px;
    border-radius: 10px;
    animation: promptCloseAnimation 0.2s ease-out forwards;
}

.svg-container {
    width: 50px; /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adjust shadow properties */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff; /* Set the background color for the round container */
}


.form-modal-closed{
    background-color: var(--dark-lighten) ;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    padding: 0px 20px;
    width: 40%;
    animation: promptCloseAnimation 0.2s ease-out forwards;
}

.prompt-link:hover{
    color:#d0a858;
}

.form-modal {
    background-color: var(--dark-lighten);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    padding: 0 20px;
    width: 40%;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    animation: promptAnimation 0.2s ease-in;
}

.form-action-modal{
    background-color: var(--dark-lighten);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 31;
    padding: 10px;
    width: 20%;
    border-radius: 10px;
    animation: promptAnimation 0.2s ease-in;
}


/*  */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
}

.nav-list li{
    display: inline;
    padding: 0;
}
.nav-list li a{
    color: var(--grey);
    font-size: 15px;
    margin-right: 20px;
    margin-left: 12px;

}

.nav-list > li > .active{
    color:#d0a858 !important;
    padding: 12px;
    text-align: center;
    border-bottom: 2px solid#d0a858;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.15px;
}


.form-select select{
    background: rgba(0, 0, 0, 0.3) !important;
    color: var(--grey) !important;
    border: 0;
}


.form-select:active,
.form-select:focus{
    background-color: var(--dark-lighten);
    color: var(--grey);
    border: 0;
    box-shadow: none;
}

/* ==== PAGINATION STYLES ====== */
.pagination{
    font-size: 20px;
}

.pagination li{
    padding: 0px  10px;
    margin-right: 10px;
}

.pagination li.disabled{
    color:#635f5f;
}

.page-indicator{
    color: var(--light);
}

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

.pagination li a{
    color: #737373;
}

.pagination-page-viewer select{
    background: var(--dark-lighten-2) !important;
    color: var(--light) !important;
    border: 0;
    padding: 5px 15px;
    border-radius: 3px;
}

.pagination-page-viewer label{
    color: var(--light);
    padding-right: 5px;
    text-align: center;
    margin-top: 10px;
}

/* Hide the default checkbox */
input[type=checkbox] {
    visibility: hidden;
}


input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 35px #000000 inset !important;
    border:2px solid #000000 !important; /* Changed to 10px */
    box-shadow: 3px#d0a858; /* Add box-shadow on focus */
}

input:-webkit-autofill{
    -webkit-text-fill-color: var(--light) !important;
     border-bottom:2px solid var(--grey) !important;
     border-top: 1px solid #000000;
     border-color: #000000;
}

input:-webkit-autofill:focus{
    border-bottom:2px solid#d0a858 !important;
}

input:-webkit-autofill:active{
    border-bottom: 3px#d0a858 !important;
    color: red !important;
}

/* Creating a custom checkbox
based on demand */
.geekmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--dark-lighten);
    border: 2px solid#d0a858;
}


div#user_menu_edit .filter-geekmark, #container-myDropdownStatus .geekmark {
    background-color: #2f2f2f ;
}

/* Specify the background color to be

/* Specify the background color to be
/* Specify the background color to be
shown when checkbox is checked */
.main input:checked ~ .geekmark {
    background-color:#d0a858 !important;
    border-radius: 3px;

}

/* Checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.geekmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Display checkmark when checked */
.main input:checked ~ .geekmark:after {
    display: block;
}

/* Styling the checkmark using webkit */
/* Rotated the rectangle by 45 degree and
showing only two border to make it look
like a tickmark */
.main .geekmark:after {
    left: 4px;
    bottom: 5px;
    width: 8px;
    height: 15px;
    top: -2px;
    font-size: 20px;
    border: solid var(--dark-lighten);
    border-width: 0 2px 2px 0;
    font-weight: 500;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main input[type="checkbox"]:disabled + .geekmark,
.main input[type="checkbox"]:disabled + .geekmark::before,
.main input[type="checkbox"]:disabled + h6 {
   border-color: #aaa;
}

.disable{
    color:#aaa;
}
/*======  table styles ======== */
/* .table-container{
    width: 100%;
    overflow-x: scroll;
}

.table-responsive{
    display: table;
    overflow-x: auto;
} */

.table{
    white-space: nowrap;
    overflow-x: auto;
}

.table td {
    padding: 5px;
    word-wrap: nowrap ;
}

.table th{
    color: var(--grey);
    font-weight: 400;
    white-space: nowrap;
    overflow-x: auto;
}

.accordion-content {
    padding: 10px;
}


.striped-table {
    width: 100%;
    border-collapse: collapse;
}

.striped-table th, .striped-table td {
    border: 1px solid #ccc;
    padding: 8px;
    border: 0;
}

.striped-table tbody tr:nth-child(odd) {
    background-color: var(--dark-lighten);
}

.striped-table tbody tr:nth-child(4n+3) {
    background-color: #232323; /* Background color for every third row */
}

.table-striped-color{
    background-color: var(--dark-lighten-3);
}

.table-striped-color tr:nth-child(even) {

    background-color: #232323; /* Light gray background for even rows */
}

.table-striped-color tr:nth-child(odd) {
    background-color: var(--dark-lighten); /* Light gray background for even rows */
}

.table-striped-color tr td{
    padding: 15px;
}

/* ALERT MESSAGE CLASS */
div#successMessage {
    position: relative;
    width: inherit;
}

.alert-message {
    background-color: #01a299;
    padding: 7px 8px 7px 16px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 25px;
    border-radius: 3px;
    transition: width 0.3s ease; /* Adding transition for the width property */

    z-index: 2;
}

#successMessage h6{
    color:#002a28;
}

div.bottom {
    display: flex;
    justify-content: end;
    align-items: center;
    color: var(--light) !important;
    text-align: center;
    padding: 5px;
}

/* ======== TYPE HEAD SEARCH ========== */
.twitter-typeahead, .tt-hint, .tt-input, .tt-menu {
    width: 100%;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.tt-dataset {
    max-height: 300px;
    overflow-y: auto;
    max-width: 100%;
    overflow-x: hidden;
}

/* #suggestion_form{
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7) !important;
} */

#suggestion_form,#empty_search_form{
    background-color: var(--dark-lighten-1);
    color: var(--light);
    border: 0;
    text-transform: uppercase;
}

#recent-search-container{
    position: absolute;
    width: 100%;
    background-color: var(--dark-lighten-1);
    color: var(--light);
    z-index: 30;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8)
}


#recent-search-container ul li{
    list-style: none;
    padding: 10px;
    cursor: pointer;
    color: var(--light-darken);
}

#notification-recent-search-container, #announcement-recent-search-container{
    position: absolute;
    width: 100%;
    background-color: var(--dark-lighten-1);
    color: var(--light);
    z-index: 1500;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8)
}


#notification-recent-search-container ul li, #announcement-recent-search-container ul li{
    list-style: none;
    padding: 10px;
    cursor: pointer;
    color: var(--light-darken);
}

#past-search-icon{
    background-color: var(--dark-lighten-1);
}

/* ======== LITEPICKER ======= */
.container__main .container__months{
    display: flex;
    position: relative;
    top: 3px;
    right: 25px;
    padding: 15px;
    flex-wrap: wrap;
    background-color: var(--dark-lighten-2);
    border-radius: 3px;
    box-shadow: 0 0 1px var(--dark);
    width: calc(var(--litepicker-month-width) + 10px); /* 10px padding (left 5px, right: 5px) */
    box-sizing: content-box;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.20), 0px 1px 10px 0px rgba(0, 0, 0, 0.12), 0px 4px 5px 0px rgba(0, 0, 0, 0.14);
}


@media screen and (min-width: 1201px) and (max-width: 1550px) {
    .container__main .container__months{
        padding: 0;
    }
}

@media screen and (min-width: 900px) and (min-height: 2560px) {
    .container__main .container__months{
        padding: 0;
    }
    #assoc-cardlist {
        overflow-y: scroll;
      }
      .table-responsive {
        height: 79vh !important;
      }
      #service-record-table {
        margin-bottom: 0;
        max-height: 100% !important;
    }
    #payroll-table{
        height: 79vh !important;
    }
    #job-client-table{
        height: 86.5vh !important;
    }
    div#user-table {
        height: 86vh !important;
    }
    #assoc-cardlist {
        height: 85vh !important;
    }
    #intake-table{
        height: 88.5vh !important;
    }
    .height-25-items-assoc{
        height: auto !important;
        max-height: 58vh;
    }
  }

@keyframes promptAnimation {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes promptCloseAnimation {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

@keyframes promptActionAnimation {
    0%{
        transform: scale(0);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes promptActionCloseAnimation {
    from{
        transform: scale(1);
    }to{
        transform: scale(0);
    }
}

label#UserGroupLabel {
    left: 10px;
}

.label_CreateUserGrp {
    left: 22px;
}

.body.mx-4 .title {
    font-weight: 400 !important;
}
.title {
    font-weight: 400 !important;
}

strong.month-item-name,span.month-item-year {
     color: var(--light-darken) !important;
     font-weight: bold !important;
}

.day-item.is-start-date,.day-item.is-in-range ,.litepicker .container__days .day-item.is-end-date{
    color: #000 !important;
}


.select-dropdown-format {
    width: 10rem;
    color: #d0a858;
    border: solid #323232;
    border-width: thin;
    border-radius: 10px;
    padding: 0.5rem;
    color-scheme: dark;
    background-color: #000;
}

button#dropdownView, button#dropdownViewEdit{
    text-align: left;
    position: relative;
    font-size: 15px;
    font-weight: normal;
    border-color: #000;
    border-radius: 2px;
    box-shadow: 0 2px var(--grey);
  }

button#dropdownFilter, button#dropdownFilterGroup{
    text-align: left;
    position: relative;
    font-size: 15px;
    font-weight: normal;
    background-color: #2c2c2c ;
    border-radius: 2px;
  }

 button#dropdownFilter:active,
 /* button#dropdownFilter:focus,  */
 button#dropdownFilter:active,
 button#dropdownFilterGroup:active,
 button#dropdownFilterGroup:focus,
 button#dropdownFilterGroup:active {
    /* min-height: 52px; */
    padding: 18px 10px 10px;
    color: rgb(255, 255, 255);
    box-shadow: unset;
    background: #000 !important;
    border-color: #000 ;
  }

  button#dropdownFilter:hover, button#dropdownFilterGroup:hover{
    background: #2c2c2c ;
    border-color: #2c2c2c ;
  }


  button#dropdownView:hover, button#dropdownView:active,
  button#dropdownView:focus, button#dropdownView:active {
    /* min-height: 52px; */
    padding: 18px 10px 10px;
    color: rgb(255, 255, 255);
    box-shadow: unset;
    /* background: #000 !important;
    border-color: #000 !important; */
    box-shadow: 0 2px var(--grey);
  }


  button#dropdownViewEdit:hover, button#dropdownViewEdit:active,
  button#dropdownViewEdit:focus, button#dropdownViewEdit:active {
    background: inherit !important;
    box-shadow: unset;
    border-color: #000;
    background-color: #000 !important;
  }

  .dropdown.show .custom-chevron, .btn-group.show .custom-chevron {
    transform: rotate(180deg);
  }

  .dropdown-item.active, .dropdown-item:active {
    color: #000 !important;
    text-decoration: none !important;
    background-color: var(--light) !important;
  }

  .dropdown-menu.show {
    display: block !important;
    background: #1f1f1f !important;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 10px;
    height: 150px;
    overflow-y: auto;
  }

  .dropdown-item{
    color: #fff;
  }

  .dropdown-item:hover {
    background: rgb(239 233 238 / 14%) !important;
    color: #fff !important;
  }

  .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    color: #d0a858;
    background-color: transparent;
    border-color: #373737;
  }
  .dropdown-toggle::after{
    display: none;
  }

  #table thead {
    position: sticky;
    top: 0;
    background:#1e1e1e;
  }

 .pagination-page-viewer svg{
    vertical-align: sub !important;
  }

  #calendar_master .dropdown-menu.show {
    height: auto !important;
    overflow: hidden !important;
  }

  .inactive-geekmark {
    border: 2px solid var(--grey) ;
}

li.disabled {
    margin: 0 !important;
}

button#dropdownView {
    min-height: 45px;
}

.search-dropdown.show{
    height: auto;
    overflow: hidden;
}

.dropdown-footer{
    display: inline-flex;
    float: right;
}

.filter-geekmark{
    top:20%;
}

.cursor-pointer{
    cursor: pointer !important;
}

.btn-transparent-w-border-disabled{
    background: var(--States_white-overlay-Hover, rgba(255, 255, 255, 0.04));
    border: 0px solid #FFFFFF61;
    color: #FFFFFF61 !important;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    cursor:not-allowed !important;
}

.btn-auto-refresh {
    letter-spacing: 1.25px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    min-width: 180px;
    font-size: 14px;
}

.btn-auto-refresh:hover{
    color: #000 !important;
}

.btn-auto-refresh:hover{
    color: #FFFFFF61;
}

.btn-transparent-w-border-disabled:hover{
    color: #FFFFFF61 !important;
    cursor:not-allowed !important;
}

body {
   /* opacity: 0;  Initially hide the content */
    /* transition: opacity 0.1s ease-in-out;
    transition-delay: 0.1s;   */
    /* background: #141414 url(/assets/app/img/Background.webp) no-repeat center !important; */
    background-size: cover !important;
  }

.visible {
    opacity: 1; /* Show the content by changing opacity */
}

button#send-btn:disabled, #login-btn:disabled, #confirm-btn:disabled {
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF61;
}

.litepicker-body .day-item.is-today {
    background-color: #ffcccc; /* Custom color for 'today' */
}

#litepicker,input#litepicker-edit{
    caret-color: transparent;
}

.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-container {
    text-align: center;
}

.sidebar,.sidebar-2,#page-content-wrapper{
    transition: all ease 0.5s;
}

.icon-single-select-search, .search-icon-multi, .calendar-icon{
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

.alert-message.danger {
    background-color: #cf6679;
  }

.user-suggestions {
  width: 184px;
  padding: 5px 10px;
  background: #1e1e1e;
  border-radius: 5px;
  z-index: 1099;

  overflow: scroll;
  height: 200px;
}

li.correct svg path {
  fill: #01a299;
}

.criteria.incomplete .correct svg path {
  fill: #01a299;
}

.usersSearched {
  margin-right: 8px !important;
  margin-bottom: 6px !important;
}

#chat-container{
  text-wrap: nowrap;
}

li.correct {
    color: #fff !important;
}



.scroll-images-vertical #spinner .loading-spinner {
    margin: auto;
    top: 25%;
    position: absolute;
    right: 30%;
 }


 .tab-header.show, .tab-header-chat.show {
    padding-bottom: 5px;
    border-bottom: 3px solid #d0a858;
    color: #d0a858;
  }

.modal-gallery-wrapper .loading-spinner {
    margin: auto !important;
    top: 25% !important;
    position: absolute !important;
    right: 23% !important;
}

@media screen and (min-width: 1500px) and (max-width: 1850px) {
  .image-grp{
    width: 50px !important;
  }
}


.thumbnail-wrapper {
    text-wrap: wrap;
}

button#shareBtn.btn-transparent-w-border-disabled {
    border: 1px solid rgba(255, 255, 255, 0.1215686275) !important;
  }

  p.card-note-details-highlight {
    text-wrap: wrap;
}

img#last-saved-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.chat-list-container.full-width-add-10.shift-list {
    /* max-height: 62vh !important; */
}


@media screen and (min-width: 1367px) and (max-width: 1440px) {
    .chat-list-container, #logs-list-container, .logs-list-container  {
      overflow-y: scroll;
      height: 51vh;
    }
    .chat-list-container-archive-list {
      overflow-y: auto;
      height: 60vh;
      overflow-x: hidden;
    }
    .log-list-container{
        overflow-y: auto;
        height: 60vh;
        overflow-x: hidden;
    }
  }
  @media screen and (min-width: 1450px) and (max-width: 1532px) {
    .chat-list-container, #logs-list-container, .logs-list-container  {
      overflow-y: scroll;
      height: 51vh;
    }
    .chat-list-container-archive-list {
      overflow-y: auto;
      height: 60vh;
      overflow-x: hidden;
    }
    .log-list-container{
        overflow-y: auto;
        height: 60vh;
        overflow-x: hidden;
    }
  }
  @media screen and (min-width: 1533px) and (max-width: 1850px) {
    .chat-list-container, #logs-list-container, .logs-list-container  {
      overflow-y: scroll;
      max-height: 54vh;
    }
    .chat-list-container-archive-list {
      overflow-y: auto;
      height: 63vh;
      overflow-x: hidden;
    }
    .log-list-container{
        overflow-y: auto;
        height: 60vh;
        overflow-x: hidden;
    }
  }
  @media screen and (min-width: 1851px) and (max-width: 1952px) {
    .chat-list-container, #logs-list-container, .logs-list-container  {
      overflow-y: scroll;
      height: 62vh;
    }
    .chat-list-container-archive-list {
      overflow-y: auto;
      height: 68vh;
      overflow-x: hidden;
    }

    #b-chat-container #chat-name-preview {
      padding-left: 0 !important;
    }

    .chat-list-container.full-width-add-10.shift-list {
        max-height: 67.5vh;
        height: auto;
    }

    .modal-gallery-wrapper .loading-spinner {
        margin: auto !important;
        top: 25% !important;
        position: absolute !important;
        right: 31% !important;
    }
  }
  @media screen and (min-width: 1440px) and (min-height: 2560px) {
    .chat-list-container, #logs-list-container, .logs-list-container  {
      overflow-y: scroll;
      height: 53vh;
    }
    .chat-list-container-archive-list {
      overflow-y: auto;
      height: 60vh;
      overflow-x: hidden;
    }
    div#page_contents{
        height: 94vh !important;
    }
  }


@media screen and (min-width: 1851px) {
    textarea#chat-input {
        padding-bottom: 0% !important;
        height: 39px !important;
        padding-top: 6px !important;
    }
    #chat-input-container svg{
        vertical-align: baseline !important;
    }
}

.logs-list-container{
    overflow-x: hidden;
}
.cover-image{
    object-fit: cover;
}
.chat-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }

.rounded-circle {
    object-fit: cover;
}

.chat-image-enter{
    object-fit: cover;
}

#chat-name-preview, #chat-name-preview p , #chat-name-preview small{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#pinned_container .position-relative.mr-2.d-block.chat-image-container.image-grp {
    width: 93px;
}

.chat-bubble-sender {
    text-wrap: balance;
}

.message-link {
    text-decoration: underline;
    color: #017374;
    font-weight: 800;
}

.message-link:hover {
    text-decoration: underline;
    color: #017374;
}

.message-link-cp {
    text-decoration: underline;
    color: #D0A858;
    font-weight: 800;
}

.message-link-cp:hover {
    text-decoration: underline;
    color: #D0A858;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chat-image-grp {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  #chat-list-container-archive .text-truncate {
    width: 80% !important;
  }

/* QA SCREEN */
 @media screen and (min-width: 1300px) and (max-width: 1538px) {
    .card#chat-container {
        height: 71vh !important;
    }
    .text-truncate.w-100.chat-preview-msg {
        width: 95% !important;
    }
    .receive-time {
        font-size: 70% !important;
      }
      small.message.d-inline-block.text-truncate.w-100{
        width: 95% !important;
    }
    .chat-per-row .text-truncate {
        width: 78% !important;
    }
    #tooltip-requested-by {
        position: absolute;
        top: -90px;
    }
    #tooltip-requested-by:after {
        content: '';
        position: absolute;
        bottom: -11%;
    }
    #tooltip-requested-by-daily {
        width: 160px;
        font-size: 9px;
    }

    #tooltip-requested-by {
        position: absolute;
        top: -60px !important;
    }
    #tooltip-requested-by:after {
        content: '';
        position: absolute;
        bottom: -18% !important;
    }
    #tooltip-requested-by-daily {
        width: 160px !important ;
        font-size: 10px !important;
    }
    #tooltip-requested-by p{
        font-size: 10px !important;
    }

    .scroll-images-vertical #spinner .loading-spinner {
        margin: auto;
        position: absolute;
        right: 28%;
        top: 25%;
    }
}


#file-container-modal .image-container .selected-img {
    border: 2px solid #d0a858 !important;
  }



#card-chat .logs-card-body {
    background-color: #2c2c2c;
    border-radius: 10px;
  }
  #card-chat .logs-card-body .log-posted-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
  }
  #card-chat .logs-card-body .card-header div {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #card-chat .logs-card-body p {
    margin-bottom: 5px;
    text-wrap: balance;
  }
  #card-chat .logs-card-body ul, #card-chat .logs-card-body li, #card-chat .logs-card-body ol{
    text-wrap: balance;
  }
  #card-chat .logs-card-body .log-text-tags {
    color: #d0a858;
  }
  #card-chat .logs-card-body .logs-img {
    height: 120px;
    width: 140px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
    display: block;
  }
  #card-chat .logs-card-body hr {
    height: 1px;
    background-color: #e2e2e2;
    opacity: 0.12;
    width: 92%;
    display: block;
    margin: 0 auto;
  }
  #add-log-modal .note-editable {
    height: 30vh !important;
    position: relative !important;
  }

.form-check.sn-checkbox-open-in-new-window,
.form-check.sn-checkbox-use-protocol {
    display: none !important;
}

a.btn-create-shift-disabled{
    pointer-events: none;
}

.logout-modal #logout-msg {
    font-size: 18px !important;
  }

.highlight {
    background-color: #bfbfc4; /* Default color for inactive highlights */
}

.highlight.active {
    background-color: #0000ee; /* Color for the active highlight */
}

#result-count{
    font-size: 14px;
    color: #ffffff60;
}
.search-input-thread {
    padding-left: 45px !important;
    border-radius: 30px !important;
    background-color: #1e1e1e !important;
}

#search-up-down-btns
{    border: 2px solid #ffffff12;
    border-top: 0;
    border-bottom: 0;
}


input#search-input-chats,
#b-chat-container #search-input,
#b-chat-container #search-input-logs,
input#search-input-logs {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}


#showLatestLog, #scrollToBottomBtn {
    position: absolute;
    bottom: 20px;
    left: 47.3%;
    padding: 10px;
    background-color: #212529;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto !important;
    border-radius: 50%;
}


a.text-primary-color.d-block.redirect-primary,
#clients-table td.text-primary-color.pointer,
.long-name-elipsis {
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 185px;
}
.payroll-long-name-elipsis{
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 325px;
}
.txt-associate-link {
    color: #d0a858;
    cursor: pointer;
    word-wrap: break-word;
}

div#log-exceededItemDiv {
    z-index: 1032;
}
div#log-exceededFileDiv {
    z-index: 1032;
}
div#log-invalidFileType {
    z-index: 1032;
}
.chat-preview-msg-unread{
    color: #fff !important;
}
.unselected p{
    color: #ffffff87;
}
.row.pagination-container .btn:disabled {
    background: transparent !important;
    border: 0 !important;
}
.card-body h5{
    text-wrap: pretty;
}
.unassigned_time{
    font-size: 10px;
}
.unassigned_time_label{
    font-size: 14px;
}
.extended_shift{
    word-spacing: 0.2em;
}
.text-greyed-out{
    color: grey;
}

#edit-btn-edit-availability-modal .main .geekmark:after {
    left: 2px;
    height: 12px;
}
#edit-btn-edit-availability-modal .geekmark {
    height: 15px;
    width: 15px;
}
#save-change-modal, #cancel-modal{
    width: 25% !important;
}

.member-row{
    display: flex;
    align-items: center;
}

div#message-seen-group-modal .table-wrapper table th {
    top: -1px;
  }

#commentCountsUnread {
    background: #d0a858;
    border-radius: 50%;
    height: 15px;
    font-size: 10px;
    display: block;
    width: auto;
    text-align: center;
    position: absolute;
    top: -3px;
    right: -3px;
    line-height: 1.4;
    padding: 0 17%;
  }
#commentCountsRead {
    background: #505050;
    border-radius: 50%;
    height: 15px;
    font-size: 10px;
    display: block;
    width: auto;
    text-align: center;
    position: absolute;
    top: -3px;
    right: -3px;
    line-height: 1.4;
    padding: 0 17%;
}
div#comment-section-container {
    width: 627px;
    position: fixed;
    right: -60%;
    height: 100%;
    z-index: 99;
    transition: 0.5s ease;
}

div#comment-section-container.show {
    right: 0;
    height: 100%;
    transition: 0.5s ease;
}

#comment-section-container .note-editor.note-frame.card {
    border: 1px solid #bcbcbc !important;
    border-radius: 5px;
}

#comment-section-container .note-editor.note-frame.card.error-border {
    border: 2px solid #a0515f !important;
    border-radius: 5px;
}


#comment-section-container .note-editor.note-frame.card.focus-border {
    border: 2px solid #d0a858 !important;
    border-radius: 5px;
}

#comment-section-container .note-editor .note-toolbar {
    background: #232323;
}

#comment-section-container .note-editor .note-toolbar {
    background: #232323;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

#comment-section-container .note-editable.card-block {
    background: #141414;
}

#result-availability #accordion-1{
    height: 300px;
    overflow: auto;
    margin-bottom: 10px;
}

/* .table td {
    padding: 5px;
    padding: 10px 15px !important;
} */

.table td {
    padding: 5px;
    word-wrap: nowrap;
    padding: 8px 10px !important;
}


div#header-container.full-header
{
    width: 91%!important;
}

@media screen and (min-width: 1450px) and (max-width: 1550px) {
    #assoc-cardlist {
        height: 60vh !important;
    }
    #intake-table {
        height: 60vh !important;
    }
    #audit-trail-table {
        height: 49vh !important;
    }
    .table-responsive {
        height: 54vh !important;
    }
    #payroll-table{
        height: 30vh !important;
    }
    #service-record-table{
        height: 46.5vh !important;
    }
    #dashboard-table{
         height: 50vh !important;
    }
    #user-table {
        height: 53vh !important;
    }
    #job-client-table {
        height: 52vh !important;
    }
    .sched-availability #assoc-cardlist {
        height: 52vh !important;
    }
}

@media screen and (min-width: 1450px) and (max-width: 1550px) {
    #payroll-multiple-modal .table-responsive {
        height: 56.5vh !important;
    }
}

@media screen and (min-width: 1801px) and (max-width: 2200px) {
    #user-table {
      height: 63vh !important;
      margin-bottom: 0 !important;
    }
    .table-responsive{
        height: 63vh !important;
    }
    #page_contents{
        padding-bottom: 0 !important
    }
  }

/* @media screen and (min-width: 1650px) and (max-width: 1800px) {
    div#header-container{
        width: 81% !important;
    }
    div#header-container.full-header {
        width: 92% !important
    }

} */
@media screen and (min-width: 1920px) and (max-width: 2200px) {
    #payroll-page .table-responsive {
        height: 69vh !important;
    }
    #job-client-table {
        height: 64vh !important;
    }
    #assoc-cardlist{
        height: 60vh !important;
        overflow-y: scroll;
    }
    #payroll-individual-table{
        height: 49vh !important;
    }
    div#payroll-multiple-modal {
        width: 90% !important;
        background-color: #fff;
        top: 50% !important;
        padding-top: 15px !important;
        z-index: 9999;
        min-height: 60vh !important;
    }
    .table-responsive {
        height: 100% !important;
      }
      body {
        /* overflow-y: auto !important; */
        display: block;
    }
    div#page_contents {

      }
    /* div#header-container {
        position: fixed;
        width: 83% !important;
        right: 15px !important;
    }
    div#header-container.full-header
    {
        width: 93%!important;
    } */
}
/* @media screen and (min-width: 2201px) and (max-width: 2565px) {
    div#header-container {
        width: 87% !important
    }
    div#header-container.full-header {
        width: 94% !important
    }
} */
div#header-container , div#header-container.full-header {
    position: relative;
    width: 100% !important;
}
body {
    display: block;
}

.sidebar, .sidebar-2 {
    height: 100vh !important;
    position: sticky !important;
  }


  .alert-message {
    position: fixed !important;
    width: 96% !important;
    right: 0 !important;
    left: 0 !important;
    margin: 0 auto !important;
}

/* div#header-container {
    position: fixed;
    width: 80%;
    padding: 9px 15px;
    right: 10px;
    z-index: 28;
    height: 124px;
    background: #141414;
    margin: 0 !important;
    align-content: center;
    align-items: center;
}

div#page_contents {
    margin-top: 10%;
} */

/* div#header-container .left, div#header-container .right {

    margin-top: 2.5rem !important;
} */
.scroll-disable, body
{
    overflow-y: hidden !important;
    height: 100% !important;
}

#affix-signature-modal .geekmark, #affix-signature-modal-multiple .geekmark{
    top: -3px;
}

.btn:disabled {
    color: #adadad !important;
}

div#page_contents {
    height: 84vh !important;
}

@media screen and (min-width: 1440px) and (min-height: 2560px) {
    div#page_contents{
        height: 94vh !important;
    }
}

.confirm-delete-comment-btn:disabled{
    color: var(--dark-lighten);
    background-color: transparent;
    border-color: #303030;
    color: var(--grey-2);
}


.chat-list-container-archive-list .receive-time {
    margin-bottom: 5px;
    width: 50px !important;
    text-align: right;
}

#card-chat #chat-body #no-logs-posted {
    color: hsla(0, 0%, 100%, .4);
    font-size: 14px;
    align-items: center;
    top: 45%;
    position: relative;
}

.note-editor .note-modal .close{

    font-weight: normal;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    opacity: 0.5;
}

.b-notes-tabs .receive-time, .b-note-row-list .receive-time {
    width: auto !important;
}

.td-center-icons {
    margin: 0 auto;
    display: block;
    text-align: center;
}

div#pinned_container .receive-timemsg {
    width: 55px !important;
}

.error-border {
    border: 2px solid #a0515f !important;
    border-radius: 5px;
}

div#ui-datepicker-div {
    background: #313131;
    border: 0;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.20), 0px 1px 10px 0px rgba(0, 0, 0, 0.12), 0px 4px 5px 0px rgba(0, 0, 0, 0.14);
}

a.ui-state-default {
    background: #313131 !important;
    color: #fff !important;
    text-align: center !important;
    border: 0 !important;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    background: #313131;
    border: 0px solid #888;
    border-bottom: 1px solid #888;
    border-radius: 0 !important;
}

.ui-state-hover {
    background: #ffffff5c !important;
    border: 0 !important;
}

a.ui-state-default.ui-state-active {
    background: #d0a858 !important;
    border-radius: 4px !important;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    padding: 2% !important;
}

@media screen and (min-width: 600px) and (max-width: 850px) {

    div#comment-section-container, #notification_container_fixed {
        right: -100%;
    }
}

ul#container-myDropdownAssoc li.dropdown-item.px-2.py-1.child-container-dropdown {
    padding-top: 0px !important;
    padding-bottom: 0 !important;
}

ul#container-myDropdownClient  li.dropdown-item.px-2.py-1.child-container-dropdown {
    padding-top: 0px !important;
    padding-bottom: 0 !important;
}

.dropdown-item-input_client_program, input#input_client_program {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis !important;
}
input#input_client_program {
    padding-right: 3%;
}

#comment-section-container .note-toolbar.card-header {
    display: none !important;
}

#comment-section-container .note-editable.card-block {
    border-radius: 4px !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 14px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider-switch:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -12px;
    bottom: -3px;
    background-color: #8f8f8f;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider-switch {
    background-color: #9e7a34;
    left: -10px;

  }

  input:focus + .slider-switch {
    box-shadow: 0 0 1px #9e7a34;
  }

  input:checked + .slider-switch:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: #d0a858;
  }

  .slider-switch.round {
    border-radius: 34px;
  }

  .slider-switch.round:before {
    border-radius: 50%;
  }


div#time_off_request_container_fixed {
    position: fixed;
    right: -60%;
    min-width: 400px;
    z-index: 31;
    top: 0px;
    max-height: inherit;
    height: inherit;
    min-height: 110vh;
    transition: 0.95s ease;
}

#time_off_request_container_fixed.show {
    right: 0px;
    background: #000;
    transition: 0.95s ease;
    width: 627px;
}


div#add_time_off_request_container_fixed {
    position: fixed;
    right: -70%;
    min-width: 400px;
    z-index: 31;
    top: 0px;
    max-height: inherit;
    height: inherit;
    min-height: 110vh;
    transition: 0.95s ease;
}

#add_time_off_request_container_fixed.show {
    right: 0px;
    background: #000;
    transition: 0.95s ease;
    width: 627px;
}

#chat-body .chat-note-time, .chat-note-time small {
    font-size: 10px !important;
}

.pointer-events-none{
    pointer-events: none;
}


.custom-tooltip-file-name {
    position: absolute;
    font-size: 10px;
    background: #212529;
    z-index: 32;
    width: auto;
    display: block;
    text-wrap: auto;
    white-space: normal;
    padding: 4px;
    border-radius: 4px;
    margin-top: -5%;
    margin-left: auto;
    left: 9%;
    transition: opacity 0.3s ease;
    width: 85%;
}


div#leave_setting_form {
    position: fixed;
    right: -60%;
    min-width: 400px;
    z-index: 31;
    top: 0px;
    max-height: inherit;
    height: inherit;
    min-height: 110vh;
    transition: 0.95s ease;
}

#leave_setting_form.show {
    right: 0px;
    background: #000;
    transition: 0.95s ease;
    width: 627px;
}

.text-color-light-60{
    color: #FFFFFF60;
}

#leave_settings_understand_mark {
    height: 16px;
    width: 16px;
    cursor: pointer;
}
.main #leave_settings_understand_mark:after {
    width: 6px;
    height: 12px;
}
.dropdown-has-value {
    min-height: 52px;
    padding: 18px 10px 10px;
    color: rgb(255, 255, 255);
    border-color: transparent;
    background: #000;
    box-shadow: unset;
}

.dropdown-has-no-value {
    min-height: 52px;
    padding: 18px 10px 10px;
    color: rgb(255, 255, 255);
    box-shadow: unset !important;
}

.dropdown-label-has-value {
    color: rgb(136, 136, 136);
    font-size: 12px !important;
    top: 0px !important;
    left: 10px;
}
.dropdown-label-has-no-value {
    color: rgb(136, 136, 136);
    font-size: 16px !important;
    top: 11px !important;
    left: 10px;
}

#conflict-shift-modal .form-check-input {
    transform: scale(1.5);
    cursor: pointer;
    border: 1px solid #1e1e1e;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 1px #d0a858;
    margin-right: 10px;
    margin-top: 8px;
  }
  #conflict-shift-modal .form-check-input:checked {
    accent-color: #d0a858;
    background-color: #d0a858;
  }

  .btn-transparent-w-border {
    font-weight: bold !important;
  }

  ul#recent-search-list {
    text-transform: uppercase;
}

.btn-transparent-w-border-red:disabled {
    color: #7c7c7c;
    background-color: #272727 !important;
    background: #272727 !important;
    border-color: #272727 !important;
    pointer-events: none;
}

 
.refresh-selected-disabled{
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed !important;
    pointer-events: none;
  }

.auto-expand:focus {
    background: #000 !important;
}

textarea::-webkit-scrollbar-thumb { 
    cursor: default !important; /* Cursor changes to default when hovering over the scrollbar */
}

span#prevBtn, #nextBtn {
    margin-top: -1% !important;
}

