@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    scroll-behavior: smooth;

    /* --primary-color: #e30613; */

    --title-color-primary: #fff;
    --title-color-secondary: #313131;
    --white: #fff;
    --font-family: "Montserrat", sans-serif;
}

body {
    font-family: var(--font-family);
    background: color-mix(in srgb, var(--primary), var(--white) 98%);
    color: var(--title-color-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
}

.mob-dashboard .carousel-inner img {
    border-radius: 10px;
}

.mob-dashboard h4.section-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.mob-dashboard h4.section-title span {
    height: 1px;
    background: color-mix(in srgb, var(--primary), transparent 80%);
    width: 100%;
}

.mob-dashboard .gold-rate-cards {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
}

/* Chrome, Edge, Safari */
.mob-dashboard .gold-rate-cards::-webkit-scrollbar {
    height: 4px;
}

.mob-dashboard .gold-rate-cards::-webkit-scrollbar-thumb {
    border-radius: 0px;
}

.mob-dashboard .rate-card {
    border: 2px solid #ffb300;
    border-radius: 8px;
    padding: 5px 5px;
    background: url("../img/gold-banner.png");
    background-position: center;
    background-size: cover;
}

.mob-dashboard .rate-card span {
    font-size: 14px;
    color: var(--title-color-secondary);
    font-weight: 500;
}

.mob-dashboard .rate-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--title-color-secondary);
    white-space: nowrap;
}

.mob-dashboard .border-card {
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 10px;
    overflow: hidden;
}

.mob-dashboard .feature-card {
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    transition: transform 0.2s ease;
    cursor: pointer;
    margin-bottom: 6px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-dashboard .feature-card:hover {
    transform: translateY(-3px);
}

.mob-dashboard .feature-card img {
    width: 40px;
    height: 40px;
}

.mob-dashboard .feature-grid p {
    font-weight: 600;
    color: var(--primary);
    font-size: 8px;
    margin-bottom: 0;
    text-align: center;
    line-height: 11px;
}

.mob-dashboard .feature-card svg {
    color: var(--primary);
}

.mob-dashboard .scheme-card {
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 16px;
    font-family: "Segoe UI", sans-serif;
    background-color: var(--white);
}

.mob-dashboard .scheme-header {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.mob-dashboard .scheme-card .tag {
    background-color: color-mix(in srgb, var(--primary), transparent 80%);
    color: var(--primary);
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.mob-dashboard .scheme-card .scheme-title {
    color: var(--primary);
    margin: 5px 0;
    font-size: 22px;
    font-weight: 700;
}

/* .mob-dashboard .scheme-card .scheme-description {
    font-size: 12px;
    color: var(--title-color-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
} */

.mob-dashboard .scheme-card .scheme-description {
    font-size: 12px;
    color: var(--title-color-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.mob-dashboard .scheme-card .divider {
    height: 1px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    margin: 8px 0;
}

.mob-dashboard .scheme-card .preference-section {
    margin-bottom: 6px;
}

.mob-dashboard .scheme-card .pref-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--title-color-secondary);
    font-size: 14px;
}

.mob-dashboard .scheme-card .amount-options {
    display: flex;
    gap: 6px;
    overflow: scroll;
}

.mob-dashboard .scheme-card .amount-btn {
    padding: 2px 12px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 999px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.mob-dashboard .scheme-card .enroll-btn {
    width: 100%;
    padding: 4px 14px;
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1px;
}

.mob-dashboard .scheme-card .enroll-btn:hover {
    background: linear-gradient(
        -90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
}

footer.footer-mob a {
    border-top: 2px solid color-mix(in srgb, var(--primary), transparent 100%);
    border-bottom: 2px solid
        color-mix(in srgb, var(--primary), transparent 100%);
    color: var(--title-color-secondary);
}

footer.footer-mob a.active {
    color: var(--primary) !important;
    font-weight: 600;
    background: color-mix(in srgb, var(--primary), transparent 95%);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

footer.footer-mob a.active i {
    color: var(--primary);
}

.footer-mob h6 {
    margin-bottom: 4px;
    font-size: 10px;
}

#popular-scheme-container {
    margin-bottom: 50px;
}

a.profile-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-header img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.profile-content h3 {
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 0px;
    color: var(--white);
}
.profile-content h2 {
    margin-bottom: 0px;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
}
.header .toggle-sidebar-btn {
    font-size: 32px;
    cursor: pointer;
}

.amount-btn.selected {
    background-color: var(--primary) !important;
    color: white !important;
}

.header-customer {
    background-color: var(--primary) !important;
    color: var(--secondary-color) !important;
}

.toggle-sidebar-btn.is-customer {
    color: var(--title-color-primary) !important;
    padding-right: 8px;
}

@media only screen and (max-width: 600px) {
    .header-other {
        background-color: var(--secondary-color) !important;
        color: var(--primary) !important;
    }

    .header {
        padding-left: 6px;
    }

    /* .toggle-sidebar-btn {
        font-size: 26px;
        padding-right: 8px;
        color: var(--title-color-primary) !important;
    } */
}

.gold-rate-section {
    overflow: hidden;
}
.mob-dashboard .gold-rate-cards {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow: scroll;
    scrollbar-width: thin;
    scrollbar-color: #00000000 transparent;
}

.mob-dashboard .rate-card span {
    white-space: nowrap;
}
/* Referal */

.customer-registration .form-label {
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 600;
}

.customer-registration .form-label span {
    color: #ff4e4e;
}

.customer-registration .form-control,
.customer-registration .form-select {
    padding: 4px 6px;
    font-size: 14px;
}

.referral-container-mob {
    border: 2px dashed var(--primary);
    border-radius: 10px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--primary), transparent 96%);
    margin: 0 auto;
    text-align: center;
}
.referral-container-mob h2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--title-color-secondary);
}
.referral-container-mob p {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: var(--title-color-secondary);
}
.referral-code-mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 50%);
    border-radius: 80px;
    padding: 3px 3px 3px 16px;
    margin: 15px 0;
}
.referral-code-mob button {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
}
.referral-container-mob h6 {
    font-size: 12px;
    font-weight: 600;
}
.share-icons {
    text-align: center;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.share-icons-box {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 0.6px solid color-mix(in srgb, var(--primary), transparent 90%);
}
.share-icons img {
    width: 15px;
    cursor: pointer;
}
.section-title {
    font-weight: bold;
    margin: 20px 0 10px;
}
.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.stat-card {
    background-color: color-mix(in srgb, var(--primary), transparent 96%);
    border: 1px solid color-mix(in srgb, var(--primary), transparent 90%);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 4px;
}
.stat-content {
    text-align: left;
}
.stat-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary);
}
.stat-content h5 {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0px;
}
.shared-list {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 90%);
    margin-top: 15px;
}
.shared-list label {
    font-size: 10px;
}
.shared-list .pending {
    background-color: color-mix(in srgb, #26c281, transparent 90%);
    color: #26c281;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 12px;
    float: right;
    font-weight: 500;
}
.shared-list .registered {
    background-color: color-mix(in srgb, #ff4e4e, transparent 90%);
    color: #ff4e4e;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 12px;
    float: right;
    font-weight: 500;
}
.shared-list p {
    margin: 5px 0;
    font-size: 14px;
}
.shared-list h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.shared-list h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}
.stat-img svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

/* Scheme List, Scheme Detail, Scheme Joining */

.enroll-modal .modal-title {
    font-size: 16px;
    font-weight: 500;
}

.enroll-modal .scheme-title {
    color: var(--primary);
    margin: 5px 0;
    font-size: 20px;
    font-weight: 700;
}

.enroll-modal .scheme-description {
    font-size: 14px;
    color: var(--title-color-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
}
.enroll-modal .divider {
    height: 1px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    margin: 8px 0;
}
.enroll-modal label {
    font-size: 9px;
    line-height: 12px;
}
.enroll-modal h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

.enroll-modal .nav-tabs .nav-item .nav-link {
    padding: 4px 14px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 4px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    margin-right: 6px;
    font-size: 14px;
    margin-bottom: 6px;
}
.enroll-modal .nav-tabs .nav-item.show .nav-link,
.enroll-modal .nav-tabs .nav-link.active {
    padding: 4px 14px;
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.enroll-modal .tab-pane {
    font-size: 14px;
    color: var(--title-color-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.enroll-btn {
    width: 100%;
    padding: 4px 14px;
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px;
}

.enroll-btn:hover {
    background: linear-gradient(
        -90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: color-mix(in srgb, var(--primary), transparent 70%);
    outline: 0;
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--primary), transparent 80%);
}

.scheme-joining-form-card {
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 16px;
    font-family: "Segoe UI", sans-serif;
    background-color: var(--white);
}

.scheme-joining-form-card .form-control,
.scheme-joining-form-card .form-select {
    padding: 4px 6px;
    font-size: 14px;
}
.scheme-joining-form-card h5 {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
}
.scheme-joining-form-card .form-label span {
    color: #ff4e4e;
}
.scheme-joining-form-card .nav-tabs .nav-item .nav-link {
    padding: 6px 14px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 4px;
    background-color: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 6px;
}
.scheme-joining-form-card .nav-tabs .nav-item.show .nav-link,
.scheme-joining-form-card .nav-tabs .nav-link.active {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    border: none;
    cursor: pointer;
}
.scheme-joining-form-card .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.scheme-card {
    position: relative;
}

.scheme-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--primary);
    font-size: 1.25rem;
    cursor: pointer;
}

/* Active Scheme,Payment Schedule,Payment History */

.payment-card {
    width: 100%;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    border-radius: 10px;
    padding: 16px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: color-mix(in srgb, var(--primary), var(--white) 98%);
}

.payment-header {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    border-radius: 8px;
    padding: 12px;
    font-size: 18px;
}

.payment-amount {
    font-size: 14px;
}

.payment-progress {
    font-size: 14px;
}

.payment-body {
    display: flex;
    margin-top: 16px;
}
.circle-progress {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) var(--progress), #eee 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.6s ease;
}

.circle-progress::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--primary), var(--white) 98%);
    border-radius: 50%;
}

.circle-inner {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    color: var(--primary);
}

.solid-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solid-circle span {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.payment-details {
    margin-left: 16px;
    font-size: 14px;
    padding-left: 20px;
    border-left: 2px solid color-mix(in srgb, var(--primary), transparent 80%);
}
.details-dates strong {
    font-size: 16px;
    font-weight: 600;
}

.payable-section {
    margin-top: 10px;
    padding: 12px;
    background: color-mix(in srgb, var(--primary), transparent 95%);
    border-radius: 8px;
    text-align: center;
}
.payable-section .form-control {
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 70%);
}

.payable-label {
    color: var(--title-color-secondary);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 14px;
}

.payable-amount {
    font-size: 24px;
    font-weight: bold;
    margin-top: 6px;
}

.pay-button {
    margin-top: 12px;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    font-size: 16px;
    padding: 6px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    gap: 6px;
}

.secondary-button {
    flex: 1;
    padding: 6px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
    background: var(--white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.payment-history {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.history-title {
    text-align: center;
    font-size: 10px;
    margin-bottom: 10px;
}

.payment-card {
    border: 1px solid color-mix(in srgb, var(--primary), transparent 40%);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}

.payment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-history .payment-card {
    padding: 4px;
    background: var(--white);
}

.payment-date-card {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.payment-date-badge {
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 0px;
    font-size: 10px;
    font-weight: 500;
    width: 100%;
    display: block;
    text-align: center;
}
.payment-date-card .day {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 21px;
    padding-top: 7px;
}
.payment-date-card {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--primary), #fff 80%);
}
.payment-date-card .month {
    font-size: 10px;
    color: var(--title-color-secondary);
    margin-bottom: 3px;
    margin-top: 6px;
}
.month-short {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
}

.payment-card-details-content {
    font-size: 11px;
}
.payment-card-details-middle {
    border-bottom: 1px solid color-mix(in srgb, var(--primary), transparent 80%);
    margin-bottom: 2px;
}
.payment-card-details-bottom span {
    font-size: 12px;
    color: color-mix(in srgb, var(--primary), transparent 30%);
}
.payment-card-details-bottom h6 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.badge.paid {
    background: var(--primary);
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 10px;
}

.active-scheme-modal h4.section-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.active-scheme-modal h4.section-title span {
    height: 1px;
    background: color-mix(in srgb, var(--primary), transparent 80%);
    width: 100%;
}

.installment {
    flex-grow: 1;
    font-weight: 500;
    font-size: 14px;
    color: var(--title-color-secondary);
    line-height: 16px;
}

.payment-info {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 14px;
}

.amount-paid {
    margin-top: 12px;
    text-align: right;
}

.amount-paid .amount {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.pagination {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination button {
    margin: 0 4px;
    padding: 6px 10px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination button.active {
    background: var(--primary);
    color: var(--white);
}
.payment-header-content {
    border-top: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-header-content h6 {
    font-size: 10px;
    margin-bottom: 0px;
}
.payment-header-content h4 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
    letter-spacing: 1px;
}
.active-scheme-modal h5 {
    font-size: 16px;
}

/* Collection List */

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.search-bar .form-control {
    flex-grow: 1;
    padding: 4px;
    border-radius: 8px;
    border: 0px solid;
    font-size: 14px;
    background: transparent;
}

.search-bar-section {
    width: 100%;
    display: flex;
    align-content: center;
    border: 1px solid color-mix(in srgb, var(--primary), transparent 90%);
    border-radius: 10px;
    padding: 4px;
    height: 40px;
}

.search-bar .search-btn {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    padding: 2px 16px;
    border-radius: 6px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.search-bar .filter-btn {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    border-radius: 8px;
    height: 36px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0px;
    color: var(--white);
}

.collection-card {
    border: 1px solid #d1e0f0;
    border-radius: 10px;
    padding: 8px;
    margin-top: 12px;
}

.collection-card .scheme-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-card .badge {
    background: color-mix(in srgb, var(--primary), transparent 90%);
    color: var(--primary);
    padding: 3px 12px 3px 3px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 20px;
}
.collection-card .badge .badge-icon {
    background: var(--primary);
    color: var(--white);
    padding: 4px;
    border-radius: 20px;
}

.collection-card .icon-btn-history {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    border: none;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    color: var(--white);
    line-height: 20px;
}

/* .collection-card .customer-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.collection-card .location-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
} */

.collection-card .customer-info,
.collection-card .location-info {
    display: grid;
    grid-template-columns: 2fr 0.9fr; /* two equal columns */
    gap: 10px; /* space between NAME/PHONE or LOCATION/BOARDRATE */
    margin-top: 8px;
}

/* .collection-card .label {
    font-weight: bold;
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
} */

.collection-card .label {
    font-size: 12px;
    color: #777;
}

.collection-card .value {
    font-size: 15px;
    word-break: break-word;
    font-weight: bold;
    margin-top: 0px;
    line-height: 16px;
}

.collection-card .action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 6px;
}

.collection-card .icon-call,
.collection-card .icon-location {
    background: #e6f1ff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    line-height: 20px;
    height: 40px;
    width: 40px;
}

.collection-card .icon-call {
    color: #01c55b;
    background: color-mix(in srgb, #01c55b, transparent 80%);
}

.collection-card .icon-location {
    color: #ff4e4e;
    background: color-mix(in srgb, #ff4e4e, transparent 80%);
}

.collection-card .amount {
    background: color-mix(in srgb, var(--primary), transparent 90%);
    padding: 4px;
    height: 40px;
    border-radius: 40px;
    padding-left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
}

.collect-btn {
    background: linear-gradient(
        90deg,
        var(--primary),
        color-mix(in srgb, var(--primary), #000 20%)
    );
    color: var(--white);
    border-radius: 40px;
    border: 0px;
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    padding: 1px 14px;
}
.amount-screen span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.text-muted {
    color: #fff !important;
}
