.prose table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 1rem; 
    margin-bottom: 1rem; 
    font-size: 0.875rem; 
}
.prose th, .prose td { 
    border: 1px solid #cbd5e1; 
    padding: 0.65rem; 
    text-align: left; 
}
.prose th { 
    background-color: #f1f5f9; 
    font-weight: 600; 
    color: #334155; 
}

/* Custom Styling for Performance Bars */
.perf-bar-container {
    background-color: #e2e8f0;
    border-radius: 9999px;
    height: 8px;
    width: 100%;
    overflow: hidden;
    margin-top: 6px;
    margin-bottom: 12px;
}
.perf-bar-fill {
    background-color: #22c55e;
    height: 100%;
    border-radius: 9999px;
    transition: width 0.6s ease-in-out;
}
.perf-text-tag {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}
