
body {
    margin-top: 60px; /* Adjust based on navbar height */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #F9F9F9;
}

.sectional {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    font-family: Arial, sans-serif;
    margin-top: 110px;
}

.filters {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 15px;
}

.filters select {
    width: 30%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead tr {
    background-color: #8a5fd2;
    color: white;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    position: relative;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

tbody tr:nth-child(odd) {
    background-color: #e0ecff;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Make the entire rectangle clickable */
td a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

td a:hover {
    background-color: rgba(138, 95, 210, 0.2);
    border-radius: 10px;
}


