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

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

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

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

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

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

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

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