.styled-table {
    border-collapse: collapse; /* Removes space between cell borders */
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Subtle shadow around the table */
    width: 100%; /* Make table span full width */
}

.styled-table thead tr {
    background-color: #009879; /* Header background color */
    color: #ffffff; /* Header text color */
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px; /* Spacing within cells */
    border: 1px solid #dddddd; /* Cell borders */
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd; /* Bottom border for rows */
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3; /* Zebra striping for even rows */
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879; /* Thicker border for the last row */
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879; /* Highlight active row */
}

.styled-table tbody tr:hover {
    background-color: #f0f0f0; /* Hover effect for rows */
    cursor: pointer;
}