/* Custom Filament Table Styles */

/* Grid custom format */
/* Different background colors for even and odd rows */
.fi-ta-table tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray */
}

.fi-ta-table tr:nth-child(odd) {
    background-color: #fff; /* White */
}

/* Border between columns */
.fi-ta-table td,
.fi-ta-table th {
    border: 1px solid #ddd;
}

/* reduce table row hight */
.py-4 {
  padding-bottom: 0.3rem !important;
  padding-top: 0.3rem !important;
}
