body {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
}

.wrapper {
    padding: 50px 200px;
}

table {
    border-collapse: collapse;
    width: 80%;
    margin: 0 auto;
}

th,
td {
    line-height: 30px;
    padding: 10px;
    border: 1px solid rgb(204, 204, 204);
}

tr {
    transition: opacity ease 0.4s;
}
tr:hover {
    opacity: 0.6;
}

thead th {
    background-color: #dadada;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #f3f3f3;
}

.avatar-wrapper {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}
.avatar-wrapper img {
    width: 100%;
}
.avatar-wrapper i {
    color: blue;
    position: absolute;
    top: 19px;
    left: 14px;
}

.active {
    padding: 5px 10px;
    color: #00ff04;
    background-color: #b1cdba;
    border-radius: 5px;
}

.not-found {
    padding: 5px 10px;
    color: #e6e600;
    background-color: #afb38d;
    border-radius: 5px;
}

.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
