.profile-container{
    background: var(--card);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: 0.2s;
    max-width: 900px;
    margin: auto;
    padding: 24px;
}

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

.avatar-wrapper img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-meta h1{
    margin: 0;
    font-size: 14px;
}

.profile-stats{
    display: flex;
    gap: 16px;
    margin: 8px 0;
    color: #555;
}

.bio{
    margin: 8px 0;
}

.link{
    color: #2563eb;
    text-decoration: none;
}

.profile-actions{
    margin-top: 12px;
}

.btn{
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
}

.btn.primary{
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/*.profile-dashboard{
    margin: 24px 0;
    padding: 16px;
    background: #f3f4f6;
    border-radius: 12px;
}*/

.profile-dashboard {
    margin: 20px 0;
}

.dashboard-card {
    background: linear-gradient(180deg, #2b2f36, #1f2329);
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.dashboard-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.dashboard-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b5bac1;
    font-weight: 500;
}

.dashboard-stats i {
    color: #22c55e;
    font-size: 18px;
}

.profile-posts h2{
    margin-bottom: 12px;
}