/* General Styles */

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* subtle shadow for depth */
    border-radius: 6px;
    overflow: hidden;
}

table th, table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #c3e6cb; /* light green border */
    font-size: 14px;
}

table th {
    background-color: #2da350; /* solid green */
    color: #fff;              /* white text for contrast */
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tr:nth-child(even) {
    background-color: #f9fdf9; /* very light green tint */
}

table tr:hover {
    background-color: #e6f4ea; /* hover effect */
}

/* Pagination Styles */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 5px;
    transition: background 0.2s ease-in-out;
}

.pagination a:hover {
    background-color: #45a049;
}

.pagination span {
    font-size: 16px;
    margin: 0 10px;
}

/* Action Buttons */
a {
    color: #2da350;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

a:hover {
    color: #1e7e34;
}

a:active {
    color: #145c25;
}


