/* Benefits Dashboard Styles */
.stats-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: #333;
}

.stats-label {
    font-size: 1rem;
    color: #666;
}

.growth-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.growth-positive {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.growth-negative {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.chart-container {
    position: relative;
    height: 250px;
    margin-top: 15px;
}

.last-updated {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}

/* Eligibility Tracker Styles */
.benefits-dashboard .card-header {
    background-color: orange;
}

.benefits-dashboard .nav-pills .nav-link.active {
    background-color: orange;
}

.benefits-dashboard .nav-pills .nav-link {
    color: #333;
}

.benefits-dashboard .nav-pills .nav-link:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

#eligibilityResult.alert-success {
    background-color: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
    color: #27ae60;
}

#eligibilityResult.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
    color: #c0392b;
}

#eligibilityResult.alert-warning {
    background-color: rgba(243, 156, 18, 0.1);
    border-color: #f39c12;
    color: #d35400;
}
