.top-profile-card {
    padding: 10px 0;
}

.profile-image {
    width: 100%;
    border-radius: 50%;
    height: 100%;
}

.profile-image img {
    border-radius: 50%;
}

/* پس‌زمینه تاریک */
.image-modal {
    display: none; /* بعداً با JS فعال میشه */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ظرف عکس */
.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
    overflow: hidden;
    animation: popup 0.25s ease-out;
}

/* خود عکس */
.image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* انیمیشن ظاهر شدن */
@keyframes popup {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* وقتی روی عکس کوچیک هاور شد */
.profile-image img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}
/* پس‌زمینه تاریک */
.image-modal {
    display: none; /* بعداً با JS فعال میشه */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ظرف عکس */
.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
    overflow: hidden;
    animation: popup 0.25s ease-out;
}

/* خود عکس */
.image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* انیمیشن ظاهر شدن */
@keyframes popup {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* وقتی روی عکس کوچیک هاور شد */
.profile-image img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}


.top-profile-card .account-detail-number {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.top-profile-card .account-detail-number>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-profile-card .account-detail-number > div svg {
    color: var(--color-accent);
    height: 22px;
    width: 22px;
}

.top-profile-card .account-detail-number p.number {
    font-weight: 700;
    color: var(--color-accent);
}

.top-profile-card .account-detail-number p.number span {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-accent);
}

.top-profile-card .account-detail-number span {
    color: var(--color-accent);
}

.profile-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.profile-mode {
    display: flex;
    gap: 5px;
}


.report-sections {
    margin: 10px 0;
}

.report-sections .report {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: var(--border);
}

.report-sections .report .image {
    background-color: var(--color-accent-light);
    padding: 15px;
    border-radius: 50%;
}

.report-sections .report .image i {
    color: var(--color-accent);
    font-size: 20px;
}

.report-sections .report-card {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    border: var(--border-3-primary-light);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-sections .report-card.primary {
    width: 100%;
    height: 200px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
}
.report-chart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.report-chart-svg {
    width: 100%;
    height: 70px;
}
.report-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.avg-line {
    stroke: var(--color-white-3);
    stroke-width: 2;
}
.current-line {
    stroke: var(--color-accent);
    stroke-width: 2.5;
}
.report-sections .report-card .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.report-walk-path {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 6px;
}
.walk-svg {
    width: 100%;
    height: 70px;
}
.walk-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.walk-line-bg {
    stroke: var(--color-white-3);
    stroke-width: 2;
    opacity: 0.5;
}
.walk-line-progress {
    stroke: var(--color-accent);
    stroke-width: 2.4;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.4s ease-out;
}
.walk-dot {
    fill: var(--color-accent);
    transition: cx 0.4s ease-out, cy 0.4s ease-out;
}
.walk-steps-text {
    margin: 2px 0 0;
    font-size: 0.75rem;
    opacity: 0.8;
}
