.dashboard-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-icon {
    font-size: 1.5rem !important;
    margin-right: 1rem;
    background-color: var(--highlight_color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center; 
    color: #fff !important;
}

.card-text {
    color: var(--highlight_color);
}

.dashboard-card-content {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    margin-right: 1rem;
    font-weight: bold;
}

.dashboard-card-content p {
    font-weight: 600 !important;
    font-size: 1.7rem;
}

#dashboard-temp-acct-card {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}



/*--------------------------------------------------------------
>>> THIS IS ALL HISTORY
--------------------------------------------------------------*/

.table-responsive {
    background-color: #f8f9fa;
    border-radius: 10px ;
    text-align: center;
}

.table-responsive table {
    margin-bottom: 3.5rem !important;
}

.table-responsive thead th {
    background-color: var(--highlight_color); 
    color: white; 
    padding: 15px;
    font-weight: bold; 
    text-align: center;
}

.table-responsive thead {
    background-color: var(--highlight_color); 
    white-space: nowrap;
}

.user-table-body .table-user-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
    margin: 0 auto; 
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.user-table-body,
.user-table-row td {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table th, .table td {
    padding: 12px 15px;
}

.table-hover tbody tr:hover {
    background-color: var(--global-blue-opacity);
}

.caption-top {
    caption-side: top;
    font-size: 1.25em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--highlight_color);
}


/* ============         ===========================
 FOR HEEDTECH DATALIST CONSTRUCTION 
 ===================        ===========================*/

.wrapper 
{
    position:relative;
    align-items: center;
    border: 1px solid var(--color_shade4);
    border-radius: 7px;
}

.select_btn, .options li
{
    display: flex;
    cursor: pointer;
    align-items: center; 
}
.select_btn
{
    
    font-size: 16px;
    padding: 8px; 
    border-radius: 7px;
    background: #fff;
    justify-content: space-between;
    
}

.select_btn span:last-child
{
    transform: 0.3s linear;
}

.content 
{
    display: none;
    width: 100%;
    margin-top: 0px ;
    padding: 20px;
    border-radius: 7px;
    background: #fff;
    position: absolute;
    
    /*max-width: 100%;
    max-width: 250px;*/
}

.wrapper.active .content
{
    display: block;
}

.wrapper.active .select_btn span:last-child
{
    transform: rotate(-180deg);
}
.content .search
{
    position: relative; 
    width: 100%;
}
.search span
{
    color: #999;
    font-size: 20px;
    left: 15px; 
    line-height: 45px;
    position: absolute; 
}
.search input 
{
    height: 43px;
    width: 100%;
    font-size: 17px;
    padding: 0 15px 0 43px;
    outline: none;
    border: 1px solid #40b1f7; 
    border-radius: 5px;
}

.content .options 
{
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 0;
    width: 100%;
}

.options::-webkit-scrollbar
{
    width: 7px;
}

.options::-webkit-scrollbar-track
{
    background: #f1f1f1;
    border-radius: 25px;
}

.options::-webkit-scrollbar-thumb
{
    background: #f1f1f1;
    border-radius: 25px;
}

.options li
{
    
    padding: 10px 8px;
    font-size: 18px;
    border-radius: 5px;
    width: 100%; 
}

.options li:not(:last-child)
{
    border-bottom: 1px solid #f2f2f2;
}

.options li:hover, li.selected
{
    background: #f2f2f2;
    
}


