/* General Layout */
main {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    min-height: 100vh;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #ddd;
}

/* Table Headers */
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Header Background and Text */
th {
    background-color: #2c3e50; /* Primary Green */
    color: white;
}

/* Table Row Highlight */
tr:nth-child(even) {
    background-color: #f7f7f7;
}

/* Table Data Styling */
td {
    font-size: 14px;
}

/* First Column Bold Text */
td:first-child {
    font-weight: bold;
}

/* Column Styling for Specific Data */
td:nth-child(3) {
    color: #d9534f; /* Red */
}

td:nth-child(4) {
    color: #28a745; /* Green */
}

/* Heading Style */
h2 {
    text-align: center;
    color: #333;
    font-size: 24px;
}
