.nutrition-login-section {
    position: relative;
    min-height: calc(100vh - 160px);
    padding: 70px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 18%, rgba(205,151,140,0.16), transparent 28%),
        radial-gradient(circle at 85% 82%, rgba(213,134,118,0.14), transparent 30%),
        linear-gradient(135deg, #fffafa 0%, #fdf3f1 45%, #ffffff 100%);
}

.min-vh-login {
    min-height: calc(100vh - 300px);
}

.login-card-new {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(205,151,140,0.20);
    border-radius: 28px;
    padding: 42px 42px 36px;
    box-shadow: 0 24px 70px rgba(92,64,59,0.13);
    backdrop-filter: blur(12px);
}

.login-card-new::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(205,151,140,0.10);
    pointer-events: none;
}

.login-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.login-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf3f1, #f4d9d3);
    color: #bf796d;
    font-size: 25px;
    box-shadow: 0 12px 30px rgba(205,151,140,0.22);
}

.login-title {
    margin: 0;
    color: #202124;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.8px;
}

.login-subtitle {
    margin: 10px 0 30px;
    color: #6d7280;
    font-size: 16px;
    text-align: center;
}

.login-label {
    display: block;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
}

.input-soft-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0a6;
    font-size: 15px;
    z-index: 2;
}

.login-input {
    width: 100%;
    height: 54px;
    border-radius: 15px !important;
    border: 1px solid #e7d7d4 !important;
    background: #fff !important;
    padding: 0 52px 0 48px !important;
    color: #222;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(92,64,59,0.04);
    transition: all 0.25s ease;
}

.login-input:focus {
    border-color: #cd978c !important;
    box-shadow: 0 0 0 4px rgba(205,151,140,0.16) !important;
    outline: none;
}

.login-input::placeholder {
    color: #a2a8b3;
}

.password-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: 0 !important;
    background: transparent !important;
    color: #7d8792 !important;
    box-shadow: none !important;
    padding: 6px 8px;
    z-index: 3;
}

.password-eye-btn:hover {
    color: #bf796d !important;
}

.forgot-title {
    display: inline-block;
    padding: 0;
    color: #bf796d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.forgot-title:hover {
    color: #a9665c;
    text-decoration: underline;
}

.login-btn-new {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #cd978c, #b8756b);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 16px 30px rgba(191,121,109,0.30);
    transition: all 0.25s ease;
}

.login-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(191,121,109,0.38);
    color: #fff;
}

.account-title {
    color: #343a40;
    font-size: 14px;
    margin-bottom: 0;
}

.account-title .nav-link {
    display: inline-block;
    padding: 0;
    color: #bf796d;
    font-weight: 800;
    text-decoration: none;
}

.account-title .nav-link:hover {
    color: #a9665c;
    text-decoration: underline;
}

.availability-status {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 7px;
    min-height: 18px;
}

.custom-alert {
    border-radius: 15px;
    border: 0;
    font-size: 14px;
    padding: 12px 14px;
}

.nutrition-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
}

.shape-one {
    width: 260px;
    height: 260px;
    left: -90px;
    top: 90px;
    background: rgba(205,151,140,0.13);
}

.shape-two {
    width: 360px;
    height: 360px;
    right: -140px;
    bottom: -110px;
    background: rgba(245,223,218,0.75);
}

.shape-three {
    width: 120px;
    height: 120px;
    right: 24%;
    top: 110px;
    background: rgba(213,134,118,0.10);
}

@media (max-width: 767px) {
    .nutrition-login-section {
        padding: 45px 15px;
    }

    .login-card-new {
        padding: 34px 24px 30px;
        border-radius: 24px;
    }

    .login-title {
        font-size: 29px;
    }

    .login-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .login-input,
    .login-btn-new {
        height: 52px;
    }
}




.divider-new {
    position: relative;
    text-align: center;
    margin: 24px 0 18px;
}

.divider-new::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ead9d5;
}

.divider-new span {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: #fff;
    color: #8a8f98;
    font-size: 14px;
    padding: 0 14px;
}

.back-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    border-radius: 15px;
    border: 1px solid #ead9d5;
    background: #fff;
    color: #5f6368;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(92,64,59,0.05);
}

.back-login-btn:hover {
    color: #bf796d;
    border-color: #cd978c;
    background: #fff8f7;
    text-decoration: none;
}


@media (max-width: 767px) {
    
    .back-login-btn {
        height: 52px;
    }
}

.nutrition-register-section {
    padding: 48px 0;
}

.register-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.45fr;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(205,151,140,0.20);
    border-radius: 32px;
    box-shadow: 0 26px 80px rgba(92,64,59,0.14);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.register-side-panel {
    position: relative;
    padding: 46px 38px;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.35), transparent 30%),
        linear-gradient(145deg, #cd978c, #b8756b);
    color: #fff;
    overflow: hidden;
}

.register-side-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    right: -120px;
    top: -80px;
}

.register-side-panel::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    left: -80px;
    bottom: -70px;
}

.register-logo {
    position: relative;
    z-index: 2;
    color: #fff !important;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.7px;
    display: inline-block;
    margin-bottom: 52px;
}

.register-side-title {
    position: relative;
    z-index: 2;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.register-side-text {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.86);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.register-benefits {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
}

.register-benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    padding: 13px 14px;
}

.register-benefit-item span {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.register-benefit-item p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.register-help-box {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    margin-top: auto;
}

.register-help-box i {
    font-size: 24px;
}

.register-help-box strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.register-help-box small {
    display: block;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    line-height: 1.35;
}

.register-form-panel {
    padding: 34px;
}

.register-card-new {
    width: 100%;
    max-width: none;
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: none;
}

.register-top-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0dfdc;
}

.register-top-heading h3 {
    margin: 0;
    color: #202124;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.register-top-heading p {
    margin: 6px 0 0;
    color: #737985;
    font-size: 14px;
}

.register-login-link {
    white-space: nowrap;
    color: #bf796d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    background: #fff8f7;
    border: 1px solid #ead9d5;
    padding: 10px 13px;
    border-radius: 999px;
}

.register-login-link:hover {
    color: #a9665c;
    background: #fdf3f1;
}

.register-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.step-badge {
    min-width: 70px;
    height: 36px;
    border-radius: 999px;
    background: #fdf3f1;
    color: #bf796d;
    border: 1px solid #ead9d5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.register-step-header h3 {
    margin: 0;
    color: #202124;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.register-step-header p {
    margin: 3px 0 0;
    color: #7d8490;
    font-size: 13px;
}

.register-card-new .tab {
    display: none;
}

.register-card-new .tab.active {
    display: block;
}

.register-card-new .filter-label-inner {
    display: block;
    color: #222;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.register-card-new .filter-input {
    width: 100%;
    height: 50px;
    border-radius: 14px !important;
    border: 1px solid #e7d7d4 !important;
    background: #fff !important;
    color: #222;
    font-size: 14px;
    padding: 0 14px !important;
    box-shadow: 0 6px 18px rgba(92,64,59,0.035);
    transition: all 0.25s ease;
}

.register-card-new .filter-input:focus {
    border-color: #cd978c !important;
    box-shadow: 0 0 0 4px rgba(205,151,140,0.14) !important;
    outline: none;
}

.register-card-new select.filter-input {
    cursor: pointer;
}

.register-unit-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.register-unit-wrap .filter-input {
    padding-right: 74px !important;
    margin-bottom: 0 !important;
}

.register-unit-wrap .unit-badge,
.register-unit-wrap .unit-select {
    position: absolute;
    right: 8px;
    top: 7px;
    height: 36px;
    min-width: 54px;
    border: 0;
    border-radius: 10px;
    background: #fdf3f1;
    color: #bf796d;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.register-unit-wrap .unit-select {
    padding: 0 8px;
    outline: none;
}

.register-card-new .password-wrapper {
    position: relative;
}

.register-card-new .password-wrapper .filter-input {
    padding-right: 92px !important;
    margin-bottom: 0 !important;
}

.register-card-new .password-wrapper.single-icon .filter-input {
    padding-right: 48px !important;
}

.register-card-new .toggle-password,
.register-card-new .generate-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #7d8792;
    box-shadow: none;
    padding: 5px 8px;
}

.register-card-new .toggle-password {
    right: 48px;
}

.register-card-new .password-wrapper.single-icon .toggle-password {
    right: 12px;
}

.register-card-new .generate-btn {
    right: 10px;
    color: #bf796d;
    font-weight: 900;
    font-size: 12px;
}

.register-password-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    background: #fff8f7;
    border: 1px solid #ead9d5;
    border-radius: 18px;
    padding: 14px;
    margin: 2px 0 18px;
}

.register-password-box .requirement-item {
    font-size: 12px;
    font-weight: 700;
    color: #7d8490;
}

.register-password-box .requirement-item.valid {
    color: #198754;
}

.register-password-box .requirement-item.invalid {
    color: #c5534b;
}

.register-next-btn,
.register-actions .login-btn,
.register-actions .prev-btn {
    min-width: 130px;
    height: 50px;
    border-radius: 15px;
    border: 0;
    font-size: 15px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.register-next-btn,
.register-actions .login-btn {
    background: linear-gradient(135deg, #cd978c, #b8756b);
    color: #fff;
    box-shadow: 0 14px 26px rgba(191,121,109,0.25);
}

.register-next-btn {
    width: 100%;
    margin-top: 4px;
}

.register-actions .prev-btn {
    background: #fff;
    color: #5f6368;
    border: 1px solid #ead9d5;
}

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

.review-card-new {
    text-align: center;
    background: #fff8f7;
    border: 1px solid #ead9d5;
    border-radius: 22px;
    padding: 34px 24px;
    margin-bottom: 20px;
}

.review-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #fdf3f1, #f4d9d3);
    color: #bf796d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.review-card-new h4 {
    margin: 0 0 6px;
    color: #202124;
    font-size: 22px;
    font-weight: 900;
}

.review-card-new .review-title {
    margin: 0;
    color: #737985;
    font-size: 14px;
}

.register-bottom-login {
    color: #bf796d;
    font-weight: 800;
    font-size: 14px;
}

.register-error-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    min-height: 18px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 4px rgba(220,53,69,0.12) !important;
}

@media (max-width: 991px) {
    .register-shell {
        grid-template-columns: 1fr;
    }

    .register-side-panel {
        padding: 34px 28px;
    }

    .register-logo {
        margin-bottom: 28px;
    }

    .register-side-title {
        font-size: 31px;
    }

    .register-benefits {
        grid-template-columns: 1fr;
    }

    .register-form-panel {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .nutrition-register-section {
        padding: 35px 12px;
    }

    .register-card-new {
        padding: 22px;
    }

    .register-top-heading {
        display: block;
    }

    .register-login-link {
        display: inline-block;
        margin-top: 12px;
    }

    .register-password-box {
        grid-template-columns: 1fr;
    }

    .register-actions {
        flex-direction: column;
    }

    .register-actions .login-btn,
    .register-actions .prev-btn {
        width: 100%;
    }
}
.end-2{
    right: 25px;
}

/*LEAD PAGE*/
.lead-page-wrap {
    min-height: 85vh;
    padding: 34px 0 55px;
    background:
        radial-gradient(circle at 8% 10%, rgba(124,111,240,0.10), transparent 28%),
        radial-gradient(circle at 92% 22%, rgba(205,151,140,0.14), transparent 26%),
        linear-gradient(135deg, #f6f7fb 0%, #f8fafc 52%, #fff7f5 100%);
}

.lead-page-container {
    position: relative;
    z-index: 2;
}

.lead-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.24), transparent 24%),
        linear-gradient(135deg, #1f2937 0%, #4b2f2b 48%, #cd978c 100%);
    box-shadow: 0 24px 60px rgba(31,41,55,0.18);
    margin-bottom: 22px;
}

.lead-hero-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    right: -95px;
    top: -105px;
    background: rgba(255,255,255,0.12);
}

.lead-hero-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    left: 48%;
    bottom: -110px;
    border: 1px solid rgba(255,255,255,0.20);
}

.lead-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.lead-hero-card h1 {
    position: relative;
    z-index: 2;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -1px;
}

.lead-hero-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.7;
    margin: 12px 0 0;
    max-width: 680px;
}

.lead-hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lead-hero-stat {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.17);
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
}

.lead-hero-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 7px;
}

.lead-hero-stat span {
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    font-weight: 800;
}

.lead-summary-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.lead-summary-card {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 14px 35px rgba(15,23,42,0.05);
}

.lead-summary-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.lead-summary-icon.direct {
    background: #eff6ff;
    color: #2563eb;
}

.lead-summary-icon.linktree {
    background: #f5f3ff;
    color: #6d28d9;
}

.lead-summary-icon.open {
    background: #fff7ed;
    color: #ea580c;
}

.lead-summary-icon.won {
    background: #ecfdf3;
    color: #15803d;
}

.lead-summary-card span {
    display: block;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 3px;
}

.lead-summary-card strong {
    display: block;
    color: #111827;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.lead-filter-card,
.lead-content-card {
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 26px;
    box-shadow: 0 16px 42px rgba(15,23,42,0.06);
}

.lead-filter-card {
    position: sticky;
    top: 90px;
    overflow: hidden;
}

.lead-filter-header {
    padding: 22px;
    background: linear-gradient(135deg, #fff8f7, #fff);
    border-bottom: 1px solid #f0dfdc;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lead-filter-header h3 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.lead-filter-header p {
    margin: 4px 0 0;
    color: #7b8494;
    font-size: 13px;
    font-weight: 600;
}

.lead-clear-btn {
    border: 1px solid #ead9d5;
    background: #fff;
    color: #bf796d;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.lead-filter-body {
    padding: 22px;
}

.lead-field {
    margin-bottom: 16px;
}

.lead-field .filter-label {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.lead-input-wrap {
    position: relative;
}

.lead-input-wrap > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #98a2b3;
    font-size: 14px;
    z-index: 2;
}

.lead-input-wrap .request-input {
    width: 100%;
    min-height: 48px;
    border-radius: 15px !important;
    border: 1px solid #e7d7d4 !important;
    background: #fff !important;
    padding: 0 14px 0 42px !important;
    color: #111827;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(92,64,59,0.035);
    transition: all 0.25s ease;
}

.lead-input-wrap .request-input:focus {
    border-color: #cd978c !important;
    box-shadow: 0 0 0 4px rgba(205,151,140,0.14) !important;
    outline: none;
}

.lead-search-btn {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #cd978c, #b8756b);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(191,121,109,0.26);
}

.lead-content-card {
    padding: 24px;
}

.lead-content-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #edf1f7;
}

.lead-content-header h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.lead-content-header p {
    margin: 5px 0 0;
    color: #7b8494;
    font-size: 13px;
}

.lead-view-toggle {
    display: inline-flex;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    padding: 6px;
    border-radius: 16px;
}

.lead-toggle-btn {
    border: 0;
    background: transparent;
    color: #667085;
    border-radius: 12px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 900;
    transition: all 0.25s ease;
}

.lead-toggle-btn.active,
.lead-toggle-btn.btn-primary {
    background: #111827;
    color: #fff;
}

.lead-toggle-btn.btn-light {
    background: transparent;
    color: #667085;
}

.lead-table-wrap {
    overflow-x: auto;
}

.lead-table {
    margin: 0;
    min-width: 850px;
}

.lead-table thead th {
    color: #8b95a5;
    font-size: 12px;
    font-weight: 900;
    border-bottom: 1px solid #edf1f7;
    padding: 13px 12px;
    white-space: nowrap;
}

.lead-table tbody td {
    vertical-align: middle;
    border-bottom: 1px solid #f0f3f8;
    padding: 16px 12px;
    color: #374151;
    font-size: 13px;
}

.lead-source-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.source-direct {
    background: #eff6ff;
    color: #2563eb;
}

.source-linktree {
    background: #f5f3ff;
    color: #6d28d9;
}

.lead-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lead-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 16px;
    background: #fdf3f1;
    color: #bf796d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
}

.lead-name-text {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.lead-date-text {
    color: #8b95a5;
    font-size: 12px;
    font-weight: 700;
}

.lead-contact-box {
    display: grid;
    gap: 5px;
}

.lead-contact-box div {
    color: #667085;
    font-size: 13px;
}

.lead-contact-box i {
    color: #98a2b3;
    margin-right: 5px;
}

.lead-contact-box a {
    color: #667085;
    text-decoration: none;
}

.lead-contact-box a:hover {
    color: #bf796d;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.badge-new { background:#eff6ff; color:#2563eb; }
.badge-attempted { background:#fff7ed; color:#ea580c; }
.badge-working { background:#fdf3f1; color:#b8756b; }
.badge-qualified { background:#ecfdf3; color:#15803d; }
.badge-unqualified { background:#fff1f0; color:#b42318; }
.badge-nurturing { background:#f5f3ff; color:#6d28d9; }
.badge-converted { background:#ecfdf3; color:#047857; }
.badge-won { background:#ecfdf3; color:#15803d; }
.badge-lost { background:#fff1f0; color:#b42318; }

.lead-action-group {
    display: inline-flex;
    gap: 8px;
}

.lead-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lead-action-btn.view {
    background: #eff6ff;
    color: #2563eb;
}

.lead-action-btn.delete {
    background: #fff1f0;
    color: #b42318;
}

.lead-action-btn:hover {
    transform: translateY(-2px);
}

.lead-pagination-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.lead-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.lead-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    margin: 0 auto 16px;
    background: #fdf3f1;
    color: #bf796d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.lead-empty-state h4 {
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.lead-empty-state p {
    color: #7b8494;
    margin: 0;
}

.lead-calendar-toolbar {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

.lead-calendar-toolbar h4 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.lead-calendar-toolbar p {
    margin: 4px 0 0;
    color: #7b8494;
    font-size: 13px;
}

.lead-calendar-box {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 20px;
    padding: 14px;
    overflow: hidden;
}

.lead-calendar-box .fc .fc-toolbar-title {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
}

.lead-calendar-box .fc .fc-button-primary {
    background: #111827;
    border-color: #111827;
    border-radius: 10px;
    font-weight: 800;
}

.lead-calendar-box .fc-theme-standard td,
.lead-calendar-box .fc-theme-standard th {
    border-color: #edf1f7;
}

.lead-calendar-box .fc-daygrid-day-number,
.lead-calendar-box .fc-col-header-cell-cushion {
    color: #374151;
    text-decoration: none;
    font-weight: 800;
}

.lead-modal .modal-content {
    border: 0;
    border-radius: 22px;
    box-shadow: 0 25px 80px rgba(15,23,42,0.20);
}

.lead-modal .modal-header {
    border-bottom: 1px solid #edf1f7;
    padding: 18px 22px;
}

.lead-modal .modal-title {
    font-weight: 900;
    color: #111827;
}

.lead-modal .modal-body {
    padding: 22px;
}

.lead-modal .modal-footer {
    border-top: 1px solid #edf1f7;
    padding: 16px 22px;
}

@media (max-width: 991px) {
    .lead-filter-card {
        position: relative;
        top: auto;
    }

    .lead-summary-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-hero-stats {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .lead-page-wrap {
        padding: 24px 0 38px;
    }

    .lead-hero-card {
        padding: 24px;
        border-radius: 24px;
    }

    .lead-hero-card h1 {
        font-size: 27px;
    }

    .lead-hero-stats,
    .lead-summary-row {
        grid-template-columns: 1fr;
    }

    .lead-content-header {
        display: block;
    }

    .lead-view-toggle {
        margin-top: 14px;
        width: 100%;
    }

    .lead-toggle-btn {
        flex: 1;
    }

    .lead-content-card,
    .lead-filter-card {
        border-radius: 22px;
    }

    .lead-content-card {
        padding: 18px;
    }
}