/* Chart container styles */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* Results Table */
#fdOutput table {
    width: 100%;
    margin-top: 1rem;
}

#fdOutput th, #fdOutput td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom-width: 1px;
    border-color: #e5e7eb; /* gray-200 */
}

.dark #fdOutput th, .dark #fdOutput td {
    border-color: #374151; /* gray-700 */
}

#fdOutput th {
    background-color: #f9fafb; /* gray-50 */
    font-weight: 600;
}

.dark #fdOutput th {
    background-color: #1f2937; /* gray-800 */
}

#fdOutput tr:last-child th, #fdOutput tr:last-child td {
    font-weight: 700;
    color: #10b981; /* green-500 */
}

.dark #fdOutput tr:last-child th, .dark #fdOutput tr:last-child td {
    color: #34d399; /* green-400 */
}
