/* Custom styling for table and buttons */
.table-green {
    border: 2px solid #28a745; /* Green border */
    text-align: center; /* Center-align text in the entire table */
}

.table-green thead {
    background-color: #28a745; /* Green header */
    color: #fff; /* White text for header */
}

.table-green tbody tr:nth-child(even) {
    background-color: #e8f5e9; /* Light green for even rows */
}

.table-green tbody tr:nth-child(odd) {
    background-color: #f1f8f5; /* Slightly lighter green for odd rows */
}

.table-green tbody tr:hover {
    background-color: #c8e6c9; /* Highlight row on hover */
}

.table-green th,
.table-green td {
    vertical-align: middle; /* Align content vertically in the center */
    text-align: center; /* Ensure all text in cells is centered */
}

/* Center the buttons inside action column */
.table-green td div {
    text-align: center; /* Center the buttons inside each td */
}
