body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 20px;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #684caf;
    color: rgb(45, 212, 73);
    font-size: 1rem;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e9f5ff;
}

td a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

td a:hover {
    color: #0056b3;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #343a40;
    color: #bbb;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.go-home {
    position: fixed;
    top: 20px; /* Adjust the distance from the top */
    left: 20px; /* Adjust the distance from the left */
    padding: 10px 20px;
    background-color: #218838; /* You can change the color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for effect */
}

.go-home:hover {
    background-color: #0056b3; /* Darker shade on hover */
}




