/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #FF7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}




.cookies-card {
    width: 400px;
    padding: 25px;
    color: #1E2337;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    transition: all .5s;
    background: hsl(145.71deg 13.73% 10%);
    border-radius: 5px;
    box-shadow: 0 0 18px rgb(125 137 153);
    border-radius: 20px;
}

.cookies-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cookies-card__title {
    font-size: inherit;

}

.cookies-card__close {
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #797878;
    transition: all 0.2s;
}

.cookies-card__close:hover {
    color: #000;

}

.cookies-card__icon {
    color: hsl(var(--white));
    font-size: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
    font-size: 13px;
    margin-bottom: 24px;
}

.cookies-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-card__btn-outline {
    /* text-decoration: none;
    padding: 12px 20px;
    color: #001E00; */

}

/* .cookies-card__btn {
    color: #fff !important;
    text-decoration: none;
    padding: 8px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
    background-color: #363636;
    transition: all 0.2s;
} */

/* .cookies-card__btn:hover {
    background-color: #0e0e0e;
} */


@media (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}



.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}



.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: #fff;
}

.payment-system-list {
    --thumb-width: 100px;
    --thumb-height: 40px;
    --radio-size: 12px;
    --border-color: #cccccf59;
    --hover-border-color: rgb(var(--main));
    background-color: #fff;
    border-radius: 5px;
    height: 100%;

}


.payment-system-list.is-scrollable {
    max-height: min(388px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: rgb(var(--main));
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    border: 1px solid #fff;
    border-top-color: var(--border-color);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.payment-item:first-child {
    border-top-color: #fff;
    border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid hsl(var(--base));
    border-radius: 0px;
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid hsl(var(--base));
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;

}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    transition: all 0.3s;
}

.payment-item__thumb {
    width: var(--thumb-width);
    height: var(--thumb-height);
    text-align: right;
    padding-left: 10px;

    &:has(.text) {
        width: fit-content;
    }
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}

.landing {
    --body-bg: 0 0% 100%;
    --section-bg: 0 0% 100%;
    --section-bg-two: 210 40% 98%;
    --title-color: 233 12% 12%;
    --heading-color: 233 12% 12%;
    --body-color: 233 12% 28%;
}

body.landing { background-color: hsl(var(--white)); }

.landing .header {
    background-color: hsl(var(--white)) !important;
    border-bottom: 1px solid hsl(var(--black)/0.06);
    box-shadow: 0 1px 6px hsl(var(--black)/0.06);
}

.landing .header.fixed-header {
    background-color: hsl(var(--white)) !important;
}

.landing .banner-section::after,
.landing .banner-bg::after,
.landing .section-shape::before,
.landing .shape-bg {
    display: none !important;
}

.landing .section-bg {
    background-color: hsl(var(--white));
}

.landing .footer-area {
    background-color: hsl(var(--white));
    border-top: 1px solid hsl(var(--black)/0.06);
}

.landing .bottom-footer .social-list{
    background: transparent !important;
}

.landing .nav-menu .nav-item .nav-link {
    color: hsl(var(--body-color)) !important;
}

.landing .nav-menu .nav-item.active .nav-link,
.landing .nav-menu .nav-item:hover .nav-link {
    color: hsl(var(--dark)) !important;
}

.landing .btn:focus-visible {
    outline: 2px solid hsl(var(--base));
    outline-offset: 2px;
}

/* FAQ tabs visible text on light */
.landing .custom--tab .nav-item .nav-link{
    color: hsl(var(--dark)) !important;
    background-color: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--black)/0.08) !important;
}
.landing .custom--tab .nav-item .nav-link.active{
    color: hsl(var(--dark)) !important;
    background-color: hsl(var(--section-bg)) !important;
    box-shadow: none !important;
}

/* Testimonials readable on light */
.landing .feedback-content__text,
.landing .feedback-content .name,
.landing .feedback-content .title{
    color: hsl(var(--title-color)) !important;
}

/* Pricing card: remove gradients and admin color influence */
.landing .pricing-card,
.landing .pricing-card.card-two,
.landing .pricing-card.popular{
    background: hsl(var(--white)) !important;
    border: 1px solid hsl(var(--black)/0.06) !important;
}
.landing .pricing-card.popular .pricing-card__badge{ box-shadow: none !important; }
.landing .pricing-card .pricing-list,
.landing .pricing-card.card-two .pricing-list,
.landing .pricing-card.popular .pricing-list{
    background-color: hsl(var(--white)) !important;
}
.landing .pricing-card__title{ color: hsl(var(--dark)) !important; }
.landing .pricing-card:not(.popular) .pricing-card__desc{ color: hsl(var(--title-color)) !important; }
.landing .pricing-card .pricing-card__top .pricing-card__desc{ color: hsl(var(--title-color)) !important; }

/* Cookies popup: light theme */
.landing .cookies-card{
  background: hsl(var(--white)) !important;
  color: hsl(var(--body-color)) !important;
  border: 1px solid hsl(var(--black)/0.08);
  box-shadow: 0 8px 24px hsl(var(--black)/0.08) !important;
}
.landing .cookies-card__icon{ color: hsl(var(--base)) !important; }
.landing .cookies-card__title{ color: hsl(var(--title-color)) !important; }
.landing .cookies-card__content{ color: hsl(var(--body-color)) !important; }
.landing .cookies-card__close{ color: hsl(var(--body-color)) !important; }
.landing .cookies-card__footer .cookies-card__btn-outline{ border: 1px solid hsl(var(--black)/0.12); color: hsl(var(--title-color)); }


.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deposit-info__title {
    max-width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__input {
    max-width: 50%;
    text-align: right;
    width: 100%;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
        background: hsl(var(--black)/.1);
    }

}


.deposit-info__input-group .form--control {
    border: 0;
    height: 100%;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
    font-size: 14px;

}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    border: 0;
    border-block: 1px solid var(--border-color);
    border-bottom: 0;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.button-loader .spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

.purchase-option__card {
    display: flex;
    justify-content: space-around;
}

.purchase-option-card__item {
    padding: 40px 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: hsl(var(--secondary)/0.1);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width:425px) {
    .purchase-option-card__item {
        padding: 20px 5px;
    }
}


.purchase-option-card__item:has(.method-input:checked) {
    background-color: hsl(var(--base));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__title {
    color: hsl(var(--title-color));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .balance {
    color: hsl(var(--title-color)) !important;
}

.purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--white));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--black));
}

.purchase-option-card__item .purchase-option-card__icon {
    font-size: 2.2rem;
    margin-bottom: 5px;
    line-height: 1;
}

.purchase-option-card__item .purchase-option-card__icon i {
    color: hsl(var(--base));
}

.plan-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.note-wrapper__output {
    max-height: 350px !important;
    overflow: auto !important;
}

.note-wrapper__output::-webkit-scrollbar {
    width: 5px;
}

.note-wrapper__output::-webkit-scrollbar-thumb {
    background: hsl(var(--base));
    border-radius: 10px;
}

.skeleton-chat-item {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
    background: #f0f0f0;
    border-radius: 8px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-chat-item .thumb {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-right: 10px;
}

.skeleton-chat-item .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.skeleton-chat-item .content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-chat-item .content .name {
    height: 10px;
    width: 35%;
    border-radius: 20px;
    background: #e0e0e0;
    margin-bottom: 5px;
}

.skeleton-chat-item .content .text {
    height: 8px;
    width: 80%;
    border-radius: 20px;
    background: #e0e0e0;
}

.skeleton-chat-item .content .time {
    height: 8px;
    width: 14%;
    border-radius: 20px;
    background: #e0e0e0;
}



@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}


/* Skeleton for contact details */
.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.skeleton-text {
    height: 16px;
    margin: 10px 0;
}

.skeleton-text-md {
    width: 120px;
    height: 20px;
    margin: 10px auto;
}

.skeleton-text-sm {
    width: 100%;
    height: 14px;
}

.skeleton-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.skeleton-btn {
    width: 70px;
    height: 28px;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #f0f0f0;
    }

    100% {
        background-color: #e0e0e0;
    }
}

.table-thumb {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 100%;
}

.apexcharts-menu-item {
    color: #000;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
}

.apexcharts-menu-item:hover {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.apexcharts-menu-item i {
    color: #fff;
}

.apexcharts-menu-item .apexcharts-menu-icon {
    color: #fff;
}

.download-document {
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
}

.crypto-message,
.crypto-message .gateway-currency {
    color: #606576 !important;
}

.pointer {
    cursor: pointer !important;
}

.template-requirements ul {
    list-style: disc !important;
}

.template-requirements ul li {
    font-size: 15px !important;
    color: #606576 !important;
}

.progressModal .progress {
    @apply w-full overflow-hidden rounded;
}

.progressModal .progress-bar {
    @apply transition-all duration-300 ease-linear;
}

.progressModal .bg-success {
    background-color: hsl(var(--base)) !important;
}

.progressModal .progress-bar-striped {
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 1rem 1rem;
}

.progressModal .progress-bar-animated {
    animation: progressModal-progress-bar-stripes 1s linear infinite;
}

@keyframes progressModal-progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }

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

.table-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-short-form {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black)/0.6);
}

.agent-info strong {
    font-weight: 600;
}

.agent-info .agent-url {
    color: hsl(var(--primary));
    font-weight: 500;
    font-size: 0.875rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px !important;
}

.select2+.select2-container .select2-selection.select2-selection--multiple {
    background: hsl(var(--section-bg));
    border-radius: 8px !important;
}

.dashboard-container .select2+.select2-container .select2-selection.select2-selection--multiple {
    border: 1px solid #c1c9d033 !important;
}

.dashboard-container .select2+.select2-container.select2-container--open .select2-selection__rendered,
.dashboard-container .select2+.select2-container.select2-container--focus .select2-selection.select2-selection--multiple,
.dashboard-container .select2+.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid hsl(var(--base)) !important;
}

.select2+.select2-container .select2-selection--multiple .select2-search.select2-search--inline {
    line-height: 28px;
}

.select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: 25px;
    box-shadow: unset !important;
    background: transparent !important;
    padding-right: 8px;
}

.dashboard-container .select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    border: 0 !important;
}

.select2-container--default .select2-search__field {
    border-radius: 4px;
}

.select2-container--open .select2-dropdown {
    border-radius: 4px !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 0px;
}

.select2-search__field {
    background-color: hsl(var(--section-bg)) !important;
}

.select2-selection--multiple .select2-search__field {
    background-color: transparent !important;
}

.select2+.select2-container:has(.select2-selection.select2-selection--multiple) {
    height: auto;
}


.coupon-apply-button {
    position: absolute;
    right: 0;
    top: 0;
    border-width: 0px;
    width: 25% !important;
    height: calc(100% - 10px);
    margin: 5px;
    border-radius: 4px !important;
    background-color: hsl(var(--success));
    color: hsl(var(--white)) !important;
    cursor: pointer;
    padding-block: 5px;
    display: flex;
    justify-content: center !important;
}

.coupon-apply-button.disable {
    background-color: hsl(var(--black)/0.3) !important;
    color: hsl(var(--secondary)) !important;
    pointer-events: none;
}

.coupon-apply-button.remove {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}
.landing .bottom-footer .social-list{ margin-top: 12px !important; }

/* Pricing visibility fixes */
.landing .pricing-card.popular .yearly_price,
.landing .pricing-card.popular .monthly_price{ color: hsl(var(--dark)) !important; }
.landing .popular .pricing-card__number .currency-type{ color: hsl(var(--dark)) !important; }

/* Switch visibility on light */
.landing .form--switch .form-check-input{
  background-color: hsl(var(--black)/0.08) !important;
  border: 1px solid hsl(var(--black)/0.08) !important;
}
.landing .form--switch .form-check-input:checked{ background-color: hsl(var(--base)) !important; }
.landing .form--switch .form-check-input::before{
  background-color: hsl(var(--white)) !important;
  box-shadow: 0 0 3px hsl(var(--black)/0.2) !important;
}

/* Forms on light pages */
.landing .account-inner{ background-color: hsl(var(--white)) !important; }
.landing .form--control{
  background-color: hsl(var(--white)) !important;
  border: 1px solid hsl(var(--black)/0.08) !important;
  color: hsl(var(--title-color)) !important;
}
.landing .form--control::placeholder{ color: hsl(var(--secondary)/0.6) !important; }
.landing .custom--card{
  background-color: hsl(var(--white)) !important;
  border: 1px solid hsl(var(--black)/0.08) !important;
}
.landing .custom--card .card-header{
  border-bottom: 1px solid hsl(var(--black)/0.08) !important;
}
.landing .custom--card .card-title{
  color: hsl(var(--title-color)) !important;
}
.landing .custom--card .input-group-text.mobile-code{
  background: hsl(var(--black)/0.06) !important;
  color: hsl(var(--title-color)) !important;
}
.landing .custom--card .select2+.select2-container .select2-selection__rendered{
  color: hsl(var(--title-color)) !important;
}
.landing .select2-dark .select2-selection{
  background: hsl(var(--white)) !important;
  border: 1px solid hsl(var(--black)/0.08) !important;
}
.landing .select2-dark .select2-selection__rendered{
  color: hsl(var(--title-color)) !important;
}

/* Contact cards light */
.landing .contact-item{
  background-color: hsl(var(--white)) !important;
  box-shadow: 0 1px 6px hsl(var(--black)/0.06);
}
.dashboard .dashboard-row--legacy{ display: none !important; }
.dashboard .dashboard-row--minimal{ display: flex; }

/* Login autofill visibility */
.landing .form--control:-webkit-autofill{
  -webkit-text-fill-color: hsl(var(--title-color)) !important;
  caret-color: hsl(var(--title-color));
  -webkit-box-shadow: 0 0 0px 1000px hsl(var(--white)) inset !important;
}

/* Preloader light theme */
.landing .preloader,
.landing #preloader{
  background-color: hsl(var(--white)) !important;
}
.landing .loader{
  border-color: hsl(var(--base)) !important;
}
.landing .loader::after{
  border-color: hsl(var(--base)/0.5) !important;
}

/* Sidebar hover/active fixes */
.dashboard .sidebar-menu-list__link:hover{
  background-color: hsl(var(--base)/0.12) !important;
  color: hsl(var(--title-color)) !important;
}
.dashboard .sidebar-menu-list__link.active{
  background-color: hsl(var(--base)/0.2) !important;
  color: hsl(var(--base)) !important;
}
.dashboard .sidebar-menu-list__item.active > a{
  background-color: hsl(var(--base)/0.2) !important;
}

/* Submenu hover/active */
.dashboard .sidebar-submenu-list__link:hover{
  background-color: hsl(var(--base)/0.12) !important;
  color: hsl(var(--title-color)) !important;
}
.dashboard .sidebar-submenu-list__link.active,
.dashboard .sidebar-submenu-list__item.active > a{
  background-color: hsl(var(--base)/0.12) !important;
}

/* Header title readability */
.dashboard .dashboard-header__left .title{
  color: hsl(var(--white)) !important;
}
.dashboard .user-info__name{ color: hsl(var(--white)) !important; }
.dashboard .user-info__desc{ color: hsl(var(--white)/0.85) !important; }

/* ================================================
   Modern Dashboard CSS
   ================================================ */

:root {
    --color-primary: #2563eb;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;
    --color-purple: #8b5cf6;
    --color-orange: #f97316;
    --color-teal: #14b8a6;
    --color-indigo: #6366f1;
    --color-blue: #0ea5e9;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ================================================
   Base Styles
   ================================================ */

.modern-dashboard {
    padding: 1.5rem;
    background: white;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .modern-dashboard {
        padding: 1rem;
    }
}

/* ================================================
   Welcome Section
   ================================================ */

.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    background: transparent;
    color: var(--gray-900);
}

.welcome-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    color: var(--gray-900);
}

.welcome-subtitle {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray-600);
}

.quick-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.action-btn--primary {
    background: white;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.action-btn--primary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-900);
}

.action-btn--success {
    background: var(--color-success);
    color: white !important;
}

.action-btn--success:hover {
    background: #059669;
    color: white !important;
}

.action-btn--info {
    background: var(--color-info);
    color: white !important;
}

.action-btn--info:hover {
    background: #2563eb;
    color: white !important;
}

/* Ensure icon colors match */
.action-btn--success i,
.action-btn--info i {
    color: white !important;
}
/* Ensure text inside colored action buttons stays white */
.action-btn--success span,
.action-btn--info span{
  color: white !important;
}

@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .quick-actions {
        width: 100%;
    }
    
    .action-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ================================================
   Alerts
   ================================================ */

.modern-alert {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: var(--shadow);
    border-left: 4px solid;
}

.modern-alert--danger {
    border-left-color: var(--color-danger);
}

.modern-alert--info {
    border-left-color: var(--color-info);
}

.modern-alert--warning {
    border-left-color: var(--color-warning);
}

.alert-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.modern-alert--danger .alert-icon {
    background: #fee2e2;
    color: var(--color-danger);
}

.modern-alert--info .alert-icon {
    background: #dbeafe;
    color: var(--color-info);
}

.modern-alert--warning .alert-icon {
    background: #fef3c7;
    color: var(--color-warning);
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--gray-900);
}

.alert-text {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.5;
}

.alert-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.alert-link:hover {
    text-decoration: underline;
}

/* ================================================
   Stats Grid
   ================================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.2s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    transition: width 0.2s ease;
}

.stat-card:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.stat-card:hover .stat-arrow {
    transform: translateX(2px);
}

/* Stat Card Colors */
.stat-card--blue::before { background: var(--color-blue); }
.stat-card--green::before { background: var(--color-success); }
.stat-card--purple::before { background: var(--color-purple); }
.stat-card--orange::before { background: var(--color-orange); }
.stat-card--teal::before { background: var(--color-teal); }
.stat-card--indigo::before { background: var(--color-indigo); }

.stat-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.stat-card--blue .stat-icon {
    background: #eff6ff;
    color: var(--color-blue);
}

.stat-card--green .stat-icon {
    background: #d1fae5;
    color: var(--color-success);
}

.stat-card--purple .stat-icon {
    background: #ede9fe;
    color: var(--color-purple);
}

.stat-card--orange .stat-icon {
    background: #ffedd5;
    color: var(--color-orange);
}

.stat-card--teal .stat-icon {
    background: #ccfbf1;
    color: var(--color-teal);
}

.stat-card--indigo .stat-icon {
    background: #e0e7ff;
    color: var(--color-indigo);
}

.stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin: 0 0 0.25rem 0;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.2;
}

.stat-value--small {
    font-size: 1.25rem;
}

.stat-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-arrow {
    flex-shrink: 0;
    color: var(--gray-400);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.badge--danger {
    background: #fee2e2;
    color: var(--color-danger);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* ================================================
   Campaign Stats
   ================================================ */

.campaign-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card--light {
    background: white;
    border: 1px solid var(--gray-200);
}

.stat-icon--gray {
    background: white;
    color: var(--gray-600);
}

.stat-icon--success {
    background: #d1fae5;
    color: var(--color-success);
}

.stat-icon--danger {
    background: #fee2e2;
    color: var(--color-danger);
}

/* ================================================
   Secondary Stats
   ================================================ */

.secondary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card--minimal {
    padding: 1rem;
    background: white;
    border: 1px solid var(--gray-200);
}

.stat-card--minimal .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    background: var(--gray-100);
    color: var(--gray-600);
}

.stat-card--minimal .stat-value {
    font-size: 1.5rem;
}

.stat-card--minimal .stat-arrow {
    display: none;
}

/* ================================================
   Tables Section
   ================================================ */

.tables-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .tables-section {
        grid-template-columns: 1fr;
    }
}

.modern-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
    color: var(--color-primary);
}

/* ================================================
   Modern Table
   ================================================ */

.modern-table-wrapper {
    overflow-x: auto;
}

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

.modern-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.modern-table tbody tr {
    transition: background-color 0.2s ease;
}

.modern-table tbody tr:hover {
    background: var(--gray-50);
}

.modern-table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
}

.modern-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
}

/* Transaction ID */
.transaction-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--gray-900);
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

/* Date Cell */
.date-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date {
    color: var(--gray-900);
    font-weight: 500;
}

.time-ago {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Amount Cell */
.amount-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.amount {
    color: var(--gray-900);
    font-weight: 500;
}

.charge {
    font-size: 0.75rem;
    color: var(--color-danger);
}

.total {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 700;
}

/* Contact Cell */
.contact-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-name {
    font-weight: 500;
    color: var(--gray-900);
}

.mobile-number {
    font-family: 'Courier New', monospace;
    color: var(--gray-600);
}

/* Empty State */
.empty-state {
    padding: 3rem 1.5rem !important;
    text-align: center;
}

.empty-icon {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.875rem;
}

/* ================================================
   Responsive Utilities
   ================================================ */

.text-end {
    text-align: right;
}

@media (max-width: 768px) {
    .modern-table thead {
        display: none;
    }
    
    .modern-table tbody tr {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .modern-table tbody td {
        padding: 0.5rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .modern-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray-600);
        font-size: 0.75rem;
        text-transform: uppercase;
    }
}

/* ================================================
   Animations
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card,
.modern-alert,
.modern-card {
    animation: fadeIn 0.4s ease-out;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.05s; }
.stat-card:nth-child(3) { animation-delay: 0.1s; }
.stat-card:nth-child(4) { animation-delay: 0.15s; }
.stat-card:nth-child(5) { animation-delay: 0.2s; }
.stat-card:nth-child(6) { animation-delay: 0.25s; }
.account-form .form--check .form-check-input {
    border-color: hsl(var(--title-color)) !important;
}

.verification-section.banner-bg::after {
    background-color: hsl(var(--white)) !important;
    filter: none !important;
    -webkit-filter: none !important;
    height: 100vh !important;
}
