.notifications {
    width: 100%; /* Example width */
    margin: 0 auto; /* Center the form horizontally */
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.notifications thead tr th {
    text-align: center;  /* Center the text */
    padding: 5px;
}

.notifications thead tr:first-child th {
    font-size: 16;
}

.notifications thead th:first-child {
    width: 25%; /* Adjust the width as needed */
    min-width: 100px;
}

.notifications thead th:last-child {
    width: 150px; /* Adjust the width as needed */
    min-width: 150px; /* Adjust the width as needed */
}

.notifications tbody td {
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
}

.notifications tbody td:first-child {
    text-align: center;
}