
/* As mentionned before i divided the main into three parts, one is the profile card , here is the styling/rendering*/
/* Profile Card in Left Sidebar */
.profile-avatar {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    border: 4px solid #f0f2f5;
    display: block;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.profile-info {
    text-align: center;
    margin-bottom: 20px;
}

.profile-info h2 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 5px;
}

.profile-info a {
    color: #586069;
    text-decoration: none;
    font-size: 0.9rem;
}

.bio {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
    font-style: italic;
}

/* Stats Row */
.profile-stats {
    display: flex;
    justify-content: space-around;
    background: #f6f8fa;
    padding: 15px 5px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.stat-value {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
}

.stat-label {
    font-size: 0.75rem;
    color: #586069;
    text-transform: uppercase;
}

/* Meta Info (Location/Date) */
.profile-meta p {
    font-size: 0.85rem;
    color: #586069;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Error Box */
.error-box {
    text-align: center;
    color: #cf222e;
    padding: 20px;
}