table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
}

tr:hover {
    background-color: #f1f1f1;
}

.header {
    display: flex;
    justify-content: space-between;
}

.centered {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.profile {
    background: #f2f2f2;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid black;
    border-radius: 10px;
    margin-right: 10px;
    padding: 0 20px;
    pointer-events: auto;
    max-height: 50px;
}

.profile > div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.profile > div > *:nth-child(1) {
    margin-right: 20px;
}

.button_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button {
    display: block;
    margin: 10px;
    height: 24px;
    width: 24px;
}