University List
.university-table-container {
font-family: Arial, sans-serif;
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.university-header {
background-color: #333333;
color: white;
padding: 10px 15px;
text-align: left;
font-size: 18px;
font-weight: bold;
}
.university-table {
width: 100%;
border-collapse: collapse;
}
.university-table th {
background-color: #f8b133;
color: black;
padding: 8px 15px;
text-align: left; /* Default alignment: left */
font-weight: bold;
border: 1px solid #ddd;
vertical-align: middle;
height: 40px;
}
/* Center only the University Name header */
.university-table th:nth-child(2) {
text-align: center; /* Center the University Name header */
}
.university-table td {
padding: 12px 15px;
border: 1px solid #ddd;
background-color: white;
vertical-align: middle; /* Vertical centering */
height: 50px; /* Fixed height for cells */
}
.university-table tr:hover td {
background-color: #f5f5f5;
}
.university-link {
color: #cc0000;
text-decoration: none;
font-weight: bold;
cursor: pointer;
}
.university-link:hover {
text-decoration: underline;
}
.download-arrow {
color: #cc0000;
text-decoration: none;
}