.nb_form_search input {
    border-right: 1px solid #d2d6da !important;
    border-radius: 0px 0px;
    height: 42px !important;
    padding-right: 5px !important;
}
.nb_form_search button {
    border-left: 1px solid #cb0b9f !important;
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-spinner {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#loading-spinner i {
    margin-right: 10px;
}
.dropdown-custom {
    position: relative;
    display: inline-block;
}
.dropdown-custom .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 90px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: right;
}
.dropdown-custom .dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.dropdown-custom .dropdown-menu a:hover {
    background-color: #f1f1f1;
}
.dropdown-custom:hover .dropdown-menu {
    display: block;
}
.nb_card {
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);
}
.dropdown .dropdown_menu_nb_custom{
    position: absolute;
    background-color: #fff !important;
    right: auto !important;
    text-align: right;
}
.list-group {
    padding-right: 0px;
}
.modern-card {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
}

.gradient-header {
    background: linear-gradient(45deg, #007bff, #00d4ff);
    border-bottom: none;
}

.gradient-header h6 {
    font-weight: bold;
}

.modern-list .list-group-item {
    transition: background 0.3s ease;
    cursor: pointer;
    padding: 5px;
}

.modern-list .list-group-item .flex-grow-1{
    margin-top: 12px;
}

.modern-list .list-group-item:hover {
    background: #f8f9fa;
    border-radius: 10px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 10px;
}

.text-muted {
    font-size: 0.85rem;
}
.nb-dropdown {
    position: relative;
}
.nb-dropdown-toggle {
    cursor: pointer;
}
.nb-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    list-style: none;
    z-index: 1000;
}
.nb-dropdown-menu.active {
    display: block;
}
.nb-dropdown-item {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.nb-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

@media (max-width: 576px) {
    .nb-dropdown-menu {
        min-width: 110px;
        left: -50px;
    }
    .nb-dropdown-item {
        padding: 6px 10px;
        font-size: 12px;
    }
}
.color_red {
    color:red;
}
.nb-card-1 *  {
    color: white!important;
}
.nb-card-1  {
    height: 200px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nb-card-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.nb-card-1 .card-number {
    font-size: 1.4rem;
}

.nb-card-1 .card-holder {
    text-transform: uppercase;
    background: #222328;
    padding: 4px;
    border-radius: 5px;
    width: 137px;
    text-align: center;
}

.nb-loading-icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin:50px auto;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.nb-loading-icon:before {
    content: "\f110";
    font-family: FontAwesome;
    font-size:20px;
    position: absolute;
    top: 0;
}