/* Standardize row heights in the table */
#account-table tbody tr {
    height: 60px; /* Fixed height for all rows */
    vertical-align: middle;
}

#account-table td {
    padding-top: 10px;
    padding-bottom: 10px;
    white-space: nowrap;
}

/* Ensure consistent cell height for empty cells */
#account-table td:empty::after {
    content: "-";
    color: #ccc;
}

/* Improve table appearance */
#account-table {
    border-collapse: separate;
    border-spacing: 0;
}

/* Highlight on hover */
#account-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
}