body {
    font-family: Arial, sans-serif;
    margin: 20px;
        font-size: 13px;
}

table {
    width: 95%;
    border-collapse: collapse;
    margin-top: 20px;
        border-radius: 5px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

td {
    background-color: #96D4D4;
}



th {
    background-color: #f2f2f2;
}

button {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 6px;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px; /* Adjust the border-radius to control the roundness of corners */
    background-color: #411F50; /* Background color */
    color: #ffffff; /* Text color */
    border: none; /* Remove border */
}

/* Hover effect */
button:hover {
    background-color: #15a049; /* Change background color on hover */
}
