.section-buttons {
    display: none;
}

#start-button {
    margin-left: 35%;
    margin-top: 3%;
}
.circles {
    margin-left: 10%;
    margin-top: 5%;
    width: 90%;
}
.circle {
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    font-size: 19px;
    color: #000000;
    text-align: center;
    background: #a3ddcb;
    margin-right: 2%;
}
.circle:hover{
    background-color: #55bf9f;
}

.table-container{
    overflow-y: auto;
    max-height: 400px;
}
table {
    margin-top: 3%;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
tr:first-child th:first-child {
    border-top-left-radius: 15px;
}
tr:first-child th:last-child {
    border-top-right-radius: 15px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}
tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

th {
    height: 2.6vw;
    background: #a3ddcb;
    text-align: center;
}
td {
    padding-top: 4%;
    padding-bottom: 4%;
    width: 20%;
    border: 1.6px solid #a3ddcb;
    text-align: center;
}
tr:nth-child(even) {
    background-color: #e0f3ed;
}
.fa-solid {
    color: #000000;
    margin-left: 1%;
}
.searchbar {
    display: inline;
    border: 1px solid #e5707e;
    border-radius: 30px;
    position: relative;
    font-size: 16px;
    outline: none;
}
.searchbar-input {
    background: rgba(106, 112, 126, 0.01);
    outline: none;
    border: none;
    width: 200px;
    font-size: 16px;
}
td .table-buttons {
    background-color: #a3ddcb;
    color: #000000;
}
td .table-buttons:hover {
    background-color: #55bf9f;
}

