:root {
--hbl-green:#7ac143;
}
.btn-primary {
    --bs-btn-bg: #7ac143;
    --bs-btn-border-color: #7ac143;
    --bs-btn-hover-bg: #6daf3c;
    --bs-btn-hover-border-color: #6daf3c;
    --bs-btn-focus-shadow-rgb: 122, 193, 67;
    --bs-btn-active-bg: #629f35;
    --bs-btn-active-border-color: #629f35;
    --bs-btn-disabled-bg: #7ac143;
    --bs-btn-disabled-border-color: #7ac143;
 }

.app-main-content {
    max-width: 1608px;
    min-height: 100dvh;
}

.app-main-content .footer-area p {
    margin-bottom: 0;
}

.dashboard-shell {
    --dashboard-green: #7ac143;
    --dashboard-ink: #23344f;
    --dashboard-muted: #7d8794;
    --dashboard-line: #e6ebf2;
    --dashboard-blue: #0f79f3;
    --dashboard-cyan: #0ea5e9;
    --dashboard-orange: #f59e0b;
}

.dashboard-header {
    align-items: center;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 18px 20px;
}

.dashboard-title span,
.dashboard-kpi-label,
.dashboard-kpi-note,
.dashboard-panel-kicker,
.dashboard-table th,
.dashboard-action span span {
    color: var(--dashboard-muted);
    font-size: 13px;
    font-weight: 700;
}

.dashboard-title h1 {
    color: var(--dashboard-ink);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 4px 0 0;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dashboard-button {
    align-items: center;
    border: 0;
    border-radius: 6px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    text-decoration: none;
    white-space: nowrap;
}

.dashboard-button-primary {
    background: var(--dashboard-green);
    color: #ffffff;
}

.dashboard-button-light {
    background: #f4f7fb;
    color: var(--dashboard-ink);
}

.dashboard-grid {
    display: grid;
    gap: 18px;
}

.dashboard-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-kpi,
.dashboard-panel,
.dashboard-action {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
}

.dashboard-kpi {
    min-height: 136px;
    padding: 18px;
}

.dashboard-kpi-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dashboard-icon {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.dashboard-icon-green {
    background: #f1faea;
    color: #65ad35;
}

.dashboard-icon-blue {
    background: #edf6ff;
    color: var(--dashboard-blue);
}

.dashboard-icon-cyan {
    background: #ecfbff;
    color: var(--dashboard-cyan);
}

.dashboard-icon-orange {
    background: #fff8ed;
    color: var(--dashboard-orange);
}

.dashboard-kpi-value {
    color: var(--dashboard-ink);
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.dashboard-main {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    margin-top: 18px;
}

.dashboard-bottom {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    margin-top: 18px;
}

.dashboard-panel {
    min-width: 0;
    padding: 20px;
}

.dashboard-panel-head {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.dashboard-panel h2 {
    color: var(--dashboard-ink);
    font-size: 18px;
    font-weight: 900;
    margin: 3px 0 0;
}

.dashboard-period {
    background: #f4f7fb;
    border-radius: 6px;
    color: var(--dashboard-muted);
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
    white-space: nowrap;
}

.dashboard-chart {
    align-items: end;
    border-bottom: 1px solid var(--dashboard-line);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    height: 250px;
    padding-top: 18px;
}

.dashboard-bar {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: end;
    min-width: 0;
}

.dashboard-bar-stack {
    align-items: end;
    display: flex;
    gap: 4px;
    height: 190px;
    justify-content: center;
    width: 100%;
}

.dashboard-bar span {
    border-radius: 6px 6px 0 0;
    display: block;
    width: min(32px, 38%);
}

.dashboard-bar .green {
    background: var(--dashboard-green);
}

.dashboard-bar .blue {
    background: var(--dashboard-cyan);
}

.dashboard-bar label {
    color: var(--dashboard-muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.dashboard-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.dashboard-legend span {
    align-items: center;
    color: var(--dashboard-muted);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
}

.dashboard-dot {
    border-radius: 50%;
    display: inline-block;
    height: 9px;
    width: 9px;
}

.dashboard-dot-green {
    background: var(--dashboard-green);
}

.dashboard-dot-blue {
    background: var(--dashboard-cyan);
}

.dashboard-action-list {
    display: grid;
    gap: 12px;
}

.dashboard-action {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    min-height: 74px;
    padding: 14px;
    text-decoration: none;
}

.dashboard-action strong {
    color: var(--dashboard-ink);
    display: block;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.dashboard-action > i {
    color: #b2bac6;
    font-size: 18px;
    justify-self: end;
}

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

.dashboard-table {
    border-collapse: collapse;
    min-width: 560px;
    width: 100%;
}

.dashboard-table th,
.dashboard-table td {
    border-bottom: 1px solid var(--dashboard-line);
    padding: 13px 8px;
    text-align: left;
    white-space: nowrap;
}

.dashboard-table td {
    color: var(--dashboard-ink);
    font-size: 14px;
    font-weight: 700;
}

.dashboard-badge {
    border-radius: 6px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 8px;
}

.dashboard-badge-green {
    background: #f1faea;
    color: #5aa12d;
}

.dashboard-badge-blue {
    background: #edf6ff;
    color: var(--dashboard-blue);
}

.dashboard-badge-orange {
    background: #fff8ed;
    color: var(--dashboard-orange);
}

.dashboard-progress-list {
    display: grid;
    gap: 18px;
}

.dashboard-progress-row {
    display: grid;
    gap: 9px;
}

.dashboard-progress-label {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.dashboard-progress-label span,
.dashboard-progress-label strong {
    color: var(--dashboard-ink);
    font-size: 14px;
    font-weight: 900;
}

.dashboard-progress-label strong {
    color: var(--dashboard-muted);
}

.dashboard-track {
    background: #edf1f6;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.dashboard-fill {
    border-radius: inherit;
    height: 100%;
}

.dashboard-fill-green {
    background: var(--dashboard-green);
}

.dashboard-fill-orange {
    background: var(--dashboard-orange);
}

.dashboard-fill-blue {
    background: var(--dashboard-cyan);
}

@media (max-width: 1199.98px) {
    .dashboard-kpis,
    .dashboard-main,
    .dashboard-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .dashboard-header,
    .dashboard-panel-head {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-button {
        padding: 0 10px;
    }

    .dashboard-kpis,
    .dashboard-main,
    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .dashboard-kpi-value {
        font-size: 26px;
    }

    .dashboard-chart {
        gap: 8px;
        height: 220px;
    }

    .dashboard-bar-stack {
        height: 160px;
    }
}

.app-brand-link {
    gap: 8px;
}

.app-nav-collapse {
    max-width: 545px;
}

.app-burger-line {
    border-bottom: 1px solid #475569;
    height: 1px;
    width: 25px;
}

.app-burger-line-middle {
    margin: 6px 0;
}

.app-burger-line-close-1 {
    transform: rotate(45deg);
}

.app-burger-line-close-2 {
    transform: rotate(-45deg);
}

.app-stat-icon {
    font-size: 42px;
}

.app-avatar {
    align-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(15, 121, 243, 0.18);
    color: #ffffff;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0;
    text-transform: uppercase;
}

.app-avatar-blue-green {
    background: linear-gradient(135deg, #0f79f3, #2ed47e);
}

.app-avatar-purple-pink {
    background: linear-gradient(135deg, #796df6, #ee368c);
}

.app-avatar-orange-red {
    background: linear-gradient(135deg, #fc7013, #e74c3c);
}

.app-avatar-teal-blue {
    background: linear-gradient(135deg, #00b69b, #2aa9ff);
}

.app-avatar-indigo-cyan {
    background: linear-gradient(135deg, #4755d9, #00cae3);
}

.app-avatar-rose-violet {
    background: linear-gradient(135deg, #e84a7f, #8b5cf6);
}

.app-avatar-amber-brown {
    background: linear-gradient(135deg, #f1b31c, #9a5b18);
}

.app-avatar-slate-blue {
    background: linear-gradient(135deg, #314055, #0f79f3);
}

.app-avatar-sm {
    font-size: 14px;
    height: 40px;
    width: 40px;
}

.app-filter-button {
    min-height: 56px;
}

.auth-password-icon {
    color: #a9a9c8;
    cursor: pointer;
    font-size: 22px;
    right: 15px;
    z-index: 4;
}

.password-wrapper .form-control {
    padding-right: 52px;
}

.focus-number-grid {
    display: grid;
    gap: 16px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focus-number-field {
    min-width: 0;
}

.focus-digit-input {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .focus-number-grid {
        gap: 18px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.focus-report-widget-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.focus-report-widget {
    background: #fbfcfe;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
}

.focus-report-widget span,
.focus-report-widget strong,
.focus-report-widget em {
    display: block;
}

.focus-report-widget span {
    color: #8a94a3;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.focus-report-widget strong {
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    margin-top: 8px;
}

.focus-report-widget em {
    color: #8a94a3;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    margin-top: 5px;
}

.focus-report-widget-primary {
    background: #f1f8ff;
    border-color: #8dccff;
}

.focus-report-widget-primary strong,
.focus-report-widget-primary span {
    color: #1684d8;
}

.focus-report-widget-success {
    background: #f2fff8;
    border-color: #8ee8ba;
}

.focus-report-widget-success strong,
.focus-report-widget-success span {
    color: #10a66f;
}

.focus-report-widget-info {
    background: #f0fbff;
    border-color: #8ce2f5;
}

.focus-report-widget-info strong,
.focus-report-widget-info span {
    color: #0891b2;
}

.focus-report-widget-warning {
    background: #fff8ed;
    border-color: #ffd18a;
}

.focus-report-widget-warning strong,
.focus-report-widget-warning span {
    color: #d97706;
}

.body-report-card {
    --body-primary: #e57246;
    --body-secondary: #b9b9b9;
    --body-vg: #0ea5e9;
    --body-g: #10b981;
    --body-avg: #f59e0b;
    --body-bad: #ef4444;
    background: #0e0e0e;
    border-radius: 8px;
    color: #ffffff;
    padding: 20px;
}

.body-report-card h2 {
    color: var(--body-primary);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 22px;
    text-align: center;
}

.body-section-title {
    border-bottom: 1px solid #333333;
    color: var(--body-secondary);
    font-size: 12px;
    font-weight: 700;
    margin: 20px 0 10px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.body-summary-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-summary-grid div {
    background: #000000;
    border: 1px solid #242424;
    border-radius: 8px;
    padding: 12px;
}

.body-summary-grid span,
.body-summary-grid strong,
.body-summary-grid a {
    display: block;
}

.body-summary-grid span {
    color: var(--body-secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.body-summary-grid strong,
.body-summary-grid a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-top: 4px;
    text-decoration: none;
}

.body-whatsapp-link {
    align-items: center;
    color: #25d366 !important;
    display: inline-flex !important;
    font-weight: 800;
    gap: 6px;
    text-decoration: none;
}

.body-whatsapp-link i {
    font-size: 18px;
    line-height: 1;
}

.body-whatsapp-link:hover {
    color: #1fb457 !important;
}

.body-weight-ref {
    background: #000000;
    border: 2px solid var(--body-primary);
    border-radius: 16px;
    margin-top: 10px;
    padding: 20px;
    text-align: center;
}

.body-main-display {
    color: var(--body-primary);
    display: block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 5px 0;
}

.body-sub-display {
    color: var(--body-secondary);
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.body-target-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.body-progress-container {
    background: #212121;
    border-radius: 10px;
    height: 12px;
    margin: 15px 0;
    overflow: hidden;
}

.body-progress-bar {
    background: var(--body-primary);
    height: 100%;
    transition: width 0.3s ease;
    width: 0;
}

.body-targets-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.body-target-box {
    background: #0a0a0a;
    border: 2px solid #212121;
    border-radius: 12px;
    grid-column: span 3;
    opacity: 0.65;
    padding: 12px 5px;
    text-align: center;
}

.body-targets-grid.has-active .body-target-box {
    grid-column: span 2;
    opacity: 0.45;
}

.body-targets-grid .body-target-box.active {
    grid-column: 1 / -1;
    opacity: 1;
    order: -1;
    padding: 18px 5px;
}

.body-active-vg,
.body-goal-vg {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--body-vg) !important;
}

.body-active-g,
.body-goal-good {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--body-g) !important;
}

.body-active-avg {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--body-avg) !important;
}

.body-active-bad,
.body-goal-bad {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--body-bad) !important;
}

.body-result-full,
.body-result-sub {
    border-radius: 14px;
    margin-top: 10px;
    text-align: center;
}

.body-result-full {
    border: 2px solid #333333;
    padding: 18px;
}

.body-result-sub {
    background: #000000;
    border: 1px dashed #333333;
    padding: 14px;
}

.body-result-row {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-timeline-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 15px;
    padding-top: 15px;
}

.body-timeline-grid div {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.body-timeline-grid span {
    color: var(--body-primary);
    display: block;
    font-size: 17px;
    font-weight: 800;
    margin-top: 3px;
}

.body-composition-capture {
    background: #eef3f9;
    border-radius: 10px;
}

.body-theme-card {
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    padding: 18px;
}

.body-theme-section-title {
    border-bottom: 1px solid #e5e7eb;
    color: #9aa2ad;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 14px;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.body-customer-toggle {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-toggle-option {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d9dee7;
    border-radius: 8px;
    color: #555555;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 10px;
    text-align: center;
}

.btn-check:checked + .body-toggle-option {
    background: #f5fbef;
    border-color: #7ac143;
    color: #65b536;
}

.body-photo-scan {
    align-items: center;
    background: #fbfff7;
    border: 1px dashed #bde89f;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px;
}

.body-photo-scan i {
    color: #7ac143;
    font-size: 26px;
}

.body-photo-scan strong,
.body-photo-scan span {
    display: block;
}

.body-photo-scan strong {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.body-photo-scan span {
    color: #8c96a3;
    font-size: 13px;
    line-height: 1.5;
}

.body-form-fat-progress {
    background: #e5e7eb;
    border-radius: 999px;
    height: 12px;
    margin-top: 2px;
    overflow: hidden;
}

.body-form-fat-progress div {
    background: #7ac143;
    height: 100%;
    transition: width 0.3s ease;
    width: 0;
}

.body-ideal-panel {
    background: #f8fff3;
    border: 2px solid #7ac143;
    border-radius: 12px;
    padding: 26px 16px;
    text-align: center;
}

.body-ideal-main,
.body-ideal-sub {
    display: block;
}

.body-ideal-main {
    color: #7ac143;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}

.body-ideal-sub {
    color: #7b7f86;
    font-size: 16px;
    font-weight: 800;
    margin-top: 8px;
}

.body-metric-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.body-metric-tile {
    background: #fbfcfe;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    min-height: 80px;
    padding: 14px 8px;
    text-align: center;
}

.body-metric-tile span,
.body-metric-tile strong {
    display: block;
}

.body-metric-tile span {
    color: #9aa2ad;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.body-metric-tile strong {
    color: #333333;
    font-size: 20px;
    font-weight: 900;
    margin-top: 12px;
}

.body-visceral-panel {
    background: #f3fff9;
    border: 2px solid #00c389;
    border-radius: 12px;
    color: #00a875;
    padding: 20px 16px;
    text-align: center;
}

.body-visceral-panel span,
.body-visceral-panel strong,
.body-visceral-panel em {
    display: block;
}

.body-visceral-panel span {
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.body-visceral-panel strong {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 6px;
}

.body-visceral-panel em {
    border-top: 1px solid rgba(0, 168, 117, 0.2);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    margin-top: 14px;
    padding-top: 12px;
    text-transform: uppercase;
}

.body-visceral-panel.body-visceral-green {
    background: #f3fff9;
    border-color: #00c389;
    color: #00a875;
}

.body-visceral-panel.body-visceral-orange {
    background: #fff8ed;
    border-color: #f59e0b;
    color: #d97706;
}

.body-visceral-panel.body-visceral-orange em {
    border-top-color: rgba(217, 119, 6, 0.25);
}

.body-visceral-panel.body-visceral-red {
    background: #fff5f5;
    border-color: #ef4444;
    color: #dc2626;
}

.body-visceral-panel.body-visceral-red em {
    border-top-color: rgba(220, 38, 38, 0.25);
}

.body-fat-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-fat-grid.has-active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.body-fat-grid.has-active .body-fat-box.active {
    grid-column: 1 / -1;
    order: -1;
}

.body-fat-grid.has-active .body-fat-box.active span {
    font-size: 20px;
}

.body-fat-grid.has-active .body-fat-box.active strong {
    font-size: 14px;
}

.body-fat-box {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    min-height: 68px;
    padding: 12px 8px;
    text-align: center;
}

.body-fat-box span,
.body-fat-box strong {
    display: block;
}

.body-fat-box span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.body-fat-box strong {
    color: #8a8f98;
    font-size: 12px;
    font-weight: 800;
    margin-top: 8px;
}

.body-fat-excellent {
    border-color: #5cc4f3;
}

.body-fat-excellent span {
    color: #5cc4f3;
}

.body-fat-good {
    border-color: #56d19e;
}

.body-fat-good span {
    color: #56d19e;
}

.body-fat-medium {
    border-color: #f7b746;
}

.body-fat-medium span {
    color: #f7b746;
}

.body-fat-bad {
    border-color: #ff7878;
}

.body-fat-bad span {
    color: #ff7878;
}

.body-fat-active-excellent {
    background: #f0f9ff;
    border-color: #5cc4f3;
}

.body-fat-active-good {
    background: #f0fff8;
    border-color: #56d19e;
}

.body-fat-active-medium {
    background: #fff8ed;
    border-color: #f7b746;
}

.body-fat-active-bad {
    background: #fff5f5;
    border-color: #ff7878;
}

.body-goal-panel {
    background: #fff5f5;
    border: 2px solid #ff4343;
    border-radius: 12px;
    color: #ff4343;
    min-height: 110px;
    padding: 22px 16px;
    text-align: center;
}

.body-goal-panel span,
.body-goal-panel strong {
    display: block;
}

.body-goal-panel > span {
    font-size: 13px;
    font-weight: 800;
}

.body-goal-panel > strong {
    font-size: 28px;
    font-weight: 900;
    margin-top: 8px;
}

.body-goal-panel.body-goal-good {
    background: #f2fff8;
    border-color: #10b981;
    color: #10b981;
}

.body-goal-panel.body-goal-vg {
    background: #f0f9ff;
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.body-goal-panel.body-goal-bad {
    background: #fff5f5;
    border-color: #ff4343;
    color: #ff4343;
}

.body-goal-timeline {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.body-goal-timeline div {
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.body-goal-timeline span {
    font-size: 15px;
    font-weight: 900;
    margin-top: 4px;
}

.body-weight-marker-card {
    background: #fbfcfe;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.body-weight-marker-head {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.body-weight-marker-head span {
    color: #8a94a3;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.body-weight-marker-head strong {
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.body-weight-track {
    align-items: stretch;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 14px;
    position: relative;
}

.body-weight-track-under {
    background: #dff4ff;
    border-radius: 999px 0 0 999px;
}

.body-weight-track-ideal {
    background: #c9f6df;
}

.body-weight-track-over {
    background: #ffe1e1;
    border-radius: 0 999px 999px 0;
}

.body-weight-marker {
    background: #111827;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
    height: 24px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
}

.body-weight-marker-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.body-weight-marker-labels span {
    color: #8a94a3;
    font-size: 12px;
    font-weight: 800;
}

.body-bottom-widget-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.body-summary-widget {
    background: #fbfcfe;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.body-summary-widget span,
.body-summary-widget strong,
.body-summary-widget em {
    display: block;
}

.body-summary-widget span {
    color: #8a94a3;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.body-summary-widget strong {
    color: #111827;
    font-size: 20px;
    font-weight: 900;
    margin-top: 8px;
}

.body-summary-widget em {
    color: #8a94a3;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    margin-top: 5px;
}

.body-summary-widget.body-goal-good,
.body-summary-widget.body-summary-good {
    background: #f2fff8;
    border-color: #10b981;
}

.body-summary-widget.body-goal-vg,
.body-summary-widget.body-summary-info {
    background: #f0f9ff;
    border-color: #0ea5e9;
}

.body-summary-widget.body-goal-bad,
.body-summary-widget.body-summary-danger {
    background: #fff5f5;
    border-color: #ef4444;
}

.body-summary-widget.body-summary-warning {
    background: #fff8ed;
    border-color: #f59e0b;
}

.report-tabs {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.report-tabs .nav-item {
    flex: 0 0 auto;
}

.report-tabs .nav-link {
    border-radius: 8px 8px 0 0;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
}

.report-tabs .nav-link.active {
    color: #0f79f3;
}

@media (max-width: 575.98px) {
    .header-area .logo-text {
        font-size: 20px !important;
    }

    .right-header-content .header-right-item {
        margin-left: 12px;
    }

    .body-summary-grid,
    .body-result-row,
    .body-bottom-widget-grid {
        grid-template-columns: 1fr;
    }

    .body-customer-toggle,
    .body-goal-timeline,
    .body-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .body-fat-grid,
    .body-fat-grid.has-active {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .body-ideal-main,
    .body-goal-panel > strong {
        font-size: 23px;
    }

    .focus-report-widget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
     background-color:var(--hbl-green);
    border-color:var(--hbl-green);
	color:#fff;
}

.right-header-content .header-right-item .admin-profile .dropdown-menu .admin-link li .dropdown-item i,
.right-header-content .header-right-item .admin-profile .dropdown-menu .admin-link li .dropdown-item:hover span,
.right-header-content .header-right-item .admin-profile .dropdown-menu .admin-link li .dropdown-item:hover i,
.header-navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item:hover
{
     color: var(--hbl-green);
 }

a {
     color: var(--hbl-green);
 }

.sidebar-burger-close {     display: flex;
    justify-content: flex-end;
padding: 20px 20px 0 20px;
} 

.sidebar-burger-close .sidebar-burger-menu-close {
    height: 30px;
 }

.table.table-nowrap thead  { white-space: nowrap; }

@media (min-width: 1200px) {
    .main-content-container.overflow-hidden {
        overflow: visible !important;
    }

    .default-table-area .table-responsive {
        overflow: visible;
    }

    .default-table-area .table-responsive .table {
        min-width: max-content;
    }

    .default-table-area .table-responsive .table thead tr.sticky-top {
        z-index: 5;
    }
}

 .default-table-area .table-responsive .table thead tr th {
    background-color: #232323;
    color: #ffffff;
 }

.default-table-area .table-responsive .table thead tr th:nth-child(odd) {     background-color: #000; }

.menu-vertical .menu-sub .menu-item .menu-link.active,
.menu-vertical .menu-sub .menu-item .menu-link:hover
 {
    background-color: #00000010;
 }

.menu-vertical .menu-sub .menu-item .menu-link.active::before,
.menu-vertical .menu-sub .menu-item .menu-link:hover::before
{
     background-color: var(--hbl-green);
}


.menu-vertical .menu-item.open .menu-link.active .title,
.menu-vertical .menu-sub .menu-item .menu-link.active,
.menu-vertical .menu-item.open .menu-link.active .menu-icon,
.menu-vertical .menu-sub .menu-item .menu-link:hover
{
	color: var(--hbl-green);
}


 .table .btn.btn-light.btn-sm{
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.sticky-top {
     top: 68px;
 }

@media (max-width: 1199.98px) {
    .default-table-area .table-responsive {
        max-height: 60dvh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .default-table-area .table-responsive .table thead tr.sticky-top {
        top: 0;
        z-index: 5;
    }
}

@media (max-width: 767px) {
	
.header-area {
    margin-top: 10px!important;
    margin-bottom: 10px !important;
}
	
}









