﻿
.limitted-text d-block {

    max-width: 200px; /* set the maximum width to 25 characters */
    overflow: hidden; /* hide the overflowing text */
    white-space: nowrap; /* prevent the text from wrapping to a new line */

    text-overflow: ellipsis; /* optionally, add an ellipsis to indicate truncation */
}

.double-underline {
    text-decoration: underline;
    border-bottom: 1px solid #090808;
}

.remove-x-scroll {
    overflow-x: hidden;
}

.w-80 {
    max-width: 80%;
}

.w-90 {
    max-width: 90%;
}

details {
    margin-bottom: 10px;
}

summary {
    font-weight: bold;
    cursor: pointer;
}

/* Hide scrollbar buttons */
::-webkit-scrollbar-button {
    display: none;
}

/* Style the scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

/* Track styles */
::-webkit-scrollbar-track {
    background: #07090c; /* Color of the track */
    border-radius: 10px; /* Rounded corners */
}

/* Handle styles */
::-webkit-scrollbar-thumb {
    background: rgb(20, 63, 113); /* Color of the handle */
    border-radius: 10px; /* Rounded corners */
}

/* Handle hover styles */
::-webkit-scrollbar-thumb:hover {
    background: #22024e; /* Color of the handle on hover */
}

@keyframes l16 {
    100% {
        transform: rotate(1turn)
    }
}


/* Custom CSS for specific widths at breakpoints */
@media (max-width: 576px) {
    .ws-sm-100px {
        width: 100px !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .ws-md-150px {
        width: 150px !important;
    }


}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollable::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollable {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.datepicker-view {
    color: #1620dc; /* Change this to your desired color */
    background-color: rgba(147, 172, 246, 0.6);
    border-radius: 10px;
}

.datepicker {
    color: #f4f5f6;
}

.datepicker button {
    margin-right: 10px;
}

.datepicker-toggle-icon {
    color: #315afa;
    margin-end: 20px;
}

#exampleDatepicker1 {
    width: 80%;
}


.gradient-border {
    position: relative;
    padding: 10px;
    background-color: #fff;
}

.gradient-border:before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(to right, var(--bs-primary), var(--bs-info));
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gradient-border:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    border-radius: 5px;
}

.gradient-border-primary {
    border: 2px solid;
    border-image: linear-gradient(to right, var(--bs-primary), 
    var(--bs-info)) 1;
   
}

