/* Excel-like table styles */

/* General table styling */
table.excel-like-table {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #333;
}

/* Table borders */
table.excel-like-table, table.excel-like-table th, table.excel-like-table td {
    border: 1px solid #D4D4D4;
}

/* Header row styling */
table.excel-like-table th {
    background-color: #D4D4D4;
    font-weight: bold;
    padding: 3px;
}

/* Cell padding */
table.excel-like-table td {
    padding: 3px;
    text-align: left;
    height: 22px;
    overflow: hidden;
    white-space: nowrap;
}

/* Alternating row colors */
table.excel-like-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Highlighting selected row */
table.excel-like-table tr:hover {
    background-color: #e6f7ff;
}

/* Bold text for specific cells */
table.excel-like-table td[style*="font-weight: bold"] {
    font-weight: bold;
}

/* Center alignment for specific cells */
table.excel-like-table td[style*="text-align: center"] {
    text-align: center;
}

/* Font size adjustments */
table.excel-like-table td[style*="font-size: 16px"] {
    font-size: 16px;
}
table.excel-like-table td[style*="font-size: 14px"] {
    font-size: 14px;
}