
.table {
    border-collapse: collapse;  
    width: 100%;  
}

.table th, .table td {
    border: 1px solid #ddd; 
    padding: 8px; 
    text-align: center; 
}

.table th {
    background-color: #f2f2f2;  
    color: #333; 
}

.table tr:hover {
    background-color: #f1f1f1;  
}

.table .cell {
    cursor: pointer;  
}

.table .green-background {
    background-color: green;  
    color: white;  
}