.text-hover-underline:hover {
    text-decoration: underline;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(130px);
    background: var(--bs-secondary-bg); /* White background */
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of other content */
  }


  .preloader-content {
    text-align: center;
  }

  .preloader-content img {
    max-width: 100px; /* Adjust logo size as needed */
  }

 /* .main-content {
    display: none;
 } */


 /* image uploader */

 /*------------------  */
.ci-user-picture {
    min-width: 150px;
    margin-right: 16px;
}
.ci-user-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.btn-default {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.5s;
    text-align: center;
    text-transform: capitalize;
}
.bg-blue {
    background-color: #006AFA;
    color: #fff !important;
}
.filepreviewprofile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/*----modal--------*/
.modal-header-bg {
    width: 100%;
    height: 12px;
    background: linear-gradient(269.44deg, #006AFA 2.3%, #00AE86 99.19%);
}
.cropImageModal .modal-dialog{
    max-width: 750px;
    width: 90%;
    margin: 0.5rem auto;
}
.up-photo-title{
    padding: 8px 15px;
    text-align: center;
}

#upload-demo{
    position: relative;
	width: 100%;
	height: 250px;
  padding-bottom:0;
}
.croppie-container h5 {
    position: absolute;
    bottom: 4px;
    text-align: center;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    font-size: 15px;
}
figure figcaption {
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 100%;
    padding-left: 9px;
    padding-bottom: 5px;
    text-shadow: 0 0 10px #000;
}
.croppie-container .cr-image{
    right: 0;
}
.croppie-container .cr-slider-wrap {
    width: 275px;
}
.cr-slider-wrap p{
    font-size: 13px;
    color: #8D8D94;
    text-align: left;
}
.cr-slider{
    width: 275px;
}
.upload-action-btn {
    margin-top: 60px;
    padding-top: 40px;
}

.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #006AFA;
    cursor: pointer;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.cr-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #006AFA;
    cursor: pointer;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}
.cr-slider::-ms-thumb {
    width: 18px;
    height: 18px;
    background: #006AFA;
    cursor: pointer;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}
.cr-slider::-webkit-slider-runnable-track {
    width: 275px;
    height: 2px;
    cursor: pointer;
    box-shadow: none;
    background: #E0E0E0;
    border-radius: 3px;
    border:none;
}
.cr-slider:focus::-webkit-slider-runnable-track {
    background: #E0E0E0;
}
.cr-slider::-moz-range-track {
    width: 275px;
    height: 2px;
    cursor: pointer;
    box-shadow: none;
    background: #E0E0E0;
    border-radius: 3px;
    border:none;
}
.cr-slider::-ms-track {
    width: 275px;
    height: 2px;
    cursor: pointer;
    box-shadow: none;
    background: #E0E0E0;
    border-radius: 3px;
    border:none;
    color: transparent;
}


/* Smooth scrolling for the entire document */
html {
    scroll-behavior: smooth;
}

/* Style the scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 8px; /* Height of the scrollbar for horizontal scrolling */
}

::-webkit-scrollbar-track {
    background: var(--bs-body-bg);
    border-radius: 30px;
}

::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar thumb color */
    border-radius: 50px; /* Rounded corners for the thumb */
    transition: background 0.3s; /* Smooth animation for hover */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color when hovered */
}

/* For Firefox (add support for more browsers using this) */
* {
    scrollbar-width: thin; /* Small scrollbar width */
    scrollbar-color: #888 #f1f1f1; /* Thumb color and track color */
}


/*styling for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome message styling */
#welcome-message {
    position: fixed;
    bottom: 100px;
    right: 50px;
    background-color: #ffffff;
    color: #424242;
    padding: 10px 15px;
    border-radius: 8px;
    border-bottom-right-radius: 0px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.5s ease forwards;
    z-index: 1000;
}

/* Chat button styling */
#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #0084ff;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

/* Chat button hover effect */
#chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Chat icon styling */
#chat-button i {
    font-size: 26px;
    color: #fff;
}

#Chatclose {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #0084ff;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

/* Chat button hover effect */
#Chatclose:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Chat icon styling */
#Chatclose i {
    font-size: 26px;
    color: #fff;
}

/* Chat box styling */
#chat-box {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 450px;
    height: 550px;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    background-color: #ffffff;
    animation: fadeIn 0.4s ease forwards;
}

/* Chat box iframe */
#chat-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Close button */
#chat-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}

#datePicker {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    background-color: var(--bs-secondary-bg);
}

#map {
    height: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--bs-body-bg);
}

/* Ensure table borders are handled properly */

.table {
    border-collapse: collapse !important;
}

/* Remove all borders from th elements in the tbody */
.table tbody th {
    border: none !important;
}

/* Remove all borders from td elements */
.table td {
    border: none !important;
}

/* Add only bottom border to th elements in thead */
.table thead th {
    border: none;
    /* Remove any default border */
    border-bottom: 2px solid #dee2e6 !important;
}

.filter-active {
    background-color: #d1e7dd;
    /* Highlight color */
}

.toastBtn {
    display: none
}

#reset-filters {
    display: none
}

.reset {
    display: block !important
}

.shimmer {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    height: 100%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.loading-placeholder {
    height: 37px;
    margin: 10px 1px 10px 10px;
    width: 90%;
    border-radius: 10px;
}

.skeleton-header {
    width: 100%;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Dark mode shimmer effect */
[data-bs-theme=dark] .shimmer {
    background: linear-gradient(90deg, #30333a 25%, rgb(29, 33, 35) 50%, #30333a 75%);
}


[data-bs-theme=dark].loading-placeholder {
    height: 37px;
    margin: 10px 1px 10px 10px;
    width: 90%;
    border-radius: 10px;
}

[data-bs-theme=dark] @keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

[data-bs-theme=dark].main_section {
    background-color: #141517;
    color: #ffffff;
}
[data-bs-theme=dark].container {
    background: #1e2225;
    color: #ffffff;
}
[data-bs-theme=dark].floating-label-group label {
    color: #aaaaaa;
    font-size: 14px;
}

[data-bs-theme=dark].floating-label-group input:focus + label,
[data-bs-theme=dark].floating-label-group input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #007bff;
    background: #1e1e1e;
    padding: 5 15px;
}
[data-bs-theme=dark].floating-label-group input {
    width: 100%;
    padding: 10px 10px 10px 10px;
    font-size: 16px;
    background: #1e1e1e;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #dddddd;
    outline: none;
    transition: all 0.3s ease;
}

[data-bs-theme=dark].error-input {
    border: 2px solid #e33838;
    outline: none;
  }
  .error-message {
    color: red;
    font-size: 0.8rem;
  }

[data-bs-theme=dark].verify-inputs input:focus{
    border:2px solid #007bff;
}

[data-bs-theme=dark].verify-inputs input{
    width: 100%;
    height: 40px;
    padding:  10px;
    font-size: 1.4rem;
    border: 2px solid #38383c;
    background: #1e1e1e;
    border-radius: 4px;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

[data-bs-theme=dark].left-column h1 {
  color: white;
}
[data-bs-theme=dark].footer-links a {
    color: #bbbbbb;
}



/* Progress Bar */
#top-loading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #0088ff;
    /* Customize your color */
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease, opacity 0.5s ease;
}

.glowing-line {
    stroke: #0088FF;
    stroke-width: 3;
    stroke-dasharray: 10;
    animation: glowing 1.5s linear infinite;
}

.online_status {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 80%;
    left:45%;
    right: 0;
    transform: translate(50%, -50%);
    border: 2px solid white; /* Optional: Adds a border for better visibility */
}


@keyframes glowing {
    100% {
        stroke-dashoffset: 40;
    }

    0% {
        stroke-dashoffset: 0;
    }
}



