html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}

/* Table styles from prototype */
.editable-table {
    border-collapse: collapse;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 0.95rem;
    color: #1f2937; /* slate-800 */
}

.editable-table th,
.editable-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border: 1px solid #e5e7eb; /* gray-200 */
}

.editable-table th {
    font-weight: 600;
    color: #374151; /* gray-700 */
    background: #f9fafb; /* gray-50 */
}

.editable-table tbody tr:hover {
    background: #f3f4f6; /* gray-100 */
}

/* Analysis table styles */
.analysis-table {
    border-collapse: collapse;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 0.95rem;
    color: #1f2937; /* slate-800 */
    margin-bottom: 1rem;
}

.analysis-table th,
.analysis-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border: 1px solid #e5e7eb; /* gray-200 */
}

.analysis-table th {
    font-weight: 600;
    color: #374151; /* gray-700 */
    background: #f9fafb; /* gray-50 */
}

.analysis-table tbody tr:hover {
    background: #f3f4f6; /* gray-100 */
}