table { 
white-space: nowrap;
text-align: right;
}

/* Main table styling */
.number-table {
    /* width: 800%; */
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}

/* Header styling */
.number-table thead th {
    background-color: #2c3e50;
    color: white;
    font-weight: 600;
    padding: 12px 8px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #34495e;
}

/* Cell styling */
.number-table td {
    padding: 8px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 13px;
    vertical-align: middle;
}

/* Number-specific styling */
.number-table .num {
    text-align: right;
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding-right: 6cap;
}

/* Text columns */
.number-table .text {
    text-align: left;
    padding-left: 6px;
}

/* Center aligned columns */
.number-table .center {
    text-align: center;
}

/* Alternating row colors */
.number-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.number-table tbody tr:hover {
    background-color: #e3f2fd;
}

.tooltip {
    position: relative;
    cursor: help;
    text-decoration: underline;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    background: black;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 16px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

.tooltip:hover::after {
    opacity: 1;
}