.fga-container {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
max-width: 800px;
margin: 20px auto;
padding: 25px;
border: 1px solid #e1e1e1;
border-radius: 12px;
background-color: #ffffff;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.fga-header {
text-align: center;
margin-bottom: 30px;
}
.fga-header h2 {
color: #2c3e50;
margin-bottom: 10px;
}
.fga-row {
margin-bottom: 15px;
padding: 15px;
border-bottom: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.fga-row:last-child { border-bottom: none; }
.fga-label {
font-weight: 600;
color: #34495e;
flex: 1;
min-width: 250px;
margin-bottom: 5px;
}
.fga-select {
padding: 8px 12px;
border-radius: 6px;
border: 1px solid #cbd5e0;
background-color: #f8fafc;
width: 180px;
cursor: pointer;
}
.fga-result-box {
margin-top: 30px;
padding: 20px;
background-color: #f1f5f9;
border-radius: 10px;
text-align: center;
}
.fga-score {
font-size: 32px;
font-weight: bold;
color: #2563eb;
margin: 10px 0;
}
.fga-interpretation {
font-size: 16px;
color: #475569;
line-height: 1.5;
}
.btn-calculate {
display: block;
width: 100%;
padding: 15px;
background-color: #2563eb;
color: white;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
margin-top: 20px;
transition: background 0.3s;
}
.btn-calculate:hover { background-color: #1d4ed8; }
.fga-article {
margin-top: 40px;
line-height: 1.6;
color: #334155;
}
.fga-article h3 { color: #1e293b; margin-top: 25px; }
.fga-article ul { margin-bottom: 20px; }
.fga-article table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.fga-article th, .fga-article td { border: 1px solid #e2e8f0; padding: 12px; text-align: left; }
.fga-article th { background-color: #f8fafc; }
@media (max-width: 600px) {
.fga-row { flex-direction: column; align-items: flex-start; }
.fga-select { width: 100%; }
}
What is the Functional Gait Assessment (FGA)?
The Functional Gait Assessment (FGA) is a clinical tool modified from the Dynamic Gait Index (DGI) to improve reliability and reduce the "ceiling effect" often seen in gait testing. It is primarily used by physical therapists to evaluate balance and stability during various walking tasks. The assessment consists of 10 items, each scored from 0 (severe impairment) to 3 (normal), for a maximum score of 30.
Scoring and Clinical Significance
A higher score indicates better balance and lower fall risk. Research has established specific cut-off scores for different patient populations:
- Community-Dwelling Older Adults: A score of 22/30 or lower is predictive of falls and indicates a higher risk for future falling incidents.
- Parkinson's Disease: A score of 15/30 or lower is often used as a threshold for identifying fallers in patients with PD.
- Vestibular Disorders: The FGA is highly effective in detecting balance deficits that other tests might miss in patients with vestibular dysfunction.
Example Scenario
Imagine a 72-year-old patient who performs the assessment. They score '3' on level surfaces and gait speed changes, but struggle significantly with 'Gait with eyes closed' (scoring 1) and 'Ambulating backwards' (scoring 1). If their total sum ends up being 20/30, they fall below the 22/30 threshold, indicating a clinical need for balance training and fall prevention strategies.
Comparison Table: FGA vs DGI
| Feature |
Functional Gait Assessment (FGA) |
Dynamic Gait Index (DGI) |
| Total Items |
10 |
8 |
| Max Score |
30 |
24 |
| Added Tasks |
Gait with narrow base, eyes closed, backwards |
None |
| Target Population |
Older adults, Vestibular, PD, Stroke |
Mainly Geriatric |
function calculateFGAScore() {
var total = 0;
for (var i = 1; i <= 10; i++) {
var val = document.getElementById('q' + i).value;
total += parseInt(val);
}
var resultContainer = document.getElementById('result-container');
var scoreDisplay = document.getElementById('fga-total');
var interpretation = document.getElementById('fga-interpretation');
scoreDisplay.innerHTML = total + " / 30";
resultContainer.style.display = "block";
var text = "";
if (total <= 22) {
text = "
Result: Increased Fall Risk. For community-dwelling older adults, a score of ≤ 22/30 is associated with a higher risk of falls. Clinical intervention for balance and stability is recommended.";
} else {
text = "
Result: Lower Fall Risk. This score is above the standard fall risk threshold for community-dwelling older adults (22/30).";
}
if (total <= 15) {
text += "
Note: For patients with Parkinson's Disease, a score of ≤ 15/30 is highly predictive of fallers.";
}
interpretation.innerHTML = text;
window.scrollTo({
top: resultContainer.offsetTop – 100,
behavior: 'smooth'
});
}