/* ===== Profile Page ===== */
.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(20, 184, 166, 0.1));
    color: #10B981;
}

.profile-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-field:last-child {
    border-bottom: none;
}

.profile-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #F8FAFC;
}

/* Light mode */
.mud-theme-light .profile-avatar {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.05));
}

.mud-theme-light .profile-field {
    border-bottom-color: #E2E8F0;
}

.mud-theme-light .profile-label {
    color: #64748B;
}

.mud-theme-light .profile-value {
    color: #0F172A;
}
