/* Report table styles */
.ui.table.report {
    border-radius: 8px !important;
    overflow: hidden;
    width: 100%;
    table-layout: auto;
}

.ui.table.report thead th {
    background-color: #e9ecef;
    color: #495057;
    white-space: nowrap;
}

.ui.table.report td {
    white-space: nowrap;
}

/* Alternating row colors for better readability */
.ui.celled.table.report tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.ui.celled.table.report tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Color indicator circle for utilization display */
.color-indicator-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
}