/* table.css */

/* Basic styling for the container */
#table-container {
    margin: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Style for the table itself */
.data-table {
    width: 100%;
    border-collapse: collapse; /* Removes space between borders */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style for table header cells (th) */
.data-table th {
    background-color: #395736;
    color: white;
    font-weight: bold;
    padding: 12px 15px;
    text-align: left;
}

/* Style for table data cells (td) */
.data-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #d4ebce; /* A light line between rows */
}

/* Style for alternating row colors (zebra-striping) */
.data-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

/* Hover effect to highlight rows */
.data-table tbody tr:hover {
    background-color: #e2f0e3;
    cursor: pointer;
}