main {
    position: absolute;
    width: calc(100% - 300px);
    left: 300px;
    min-height: 100vh;
    transition: 0.5s;
}

main.active {
    width: calc(100% - 80px);
    left: 80px;
}

.topbar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--softGreen);
}

main .tablet {
    position: relative;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 auto;

}

main .tablet table {
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* soft black shadow */
    width: 88%;
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    transition: all 300ms ease;
}


main h3{
    margin-bottom: 1rem;
}

main .tablet table:hover {
    box-shadow: 0 0 26px rgba(0, 0, 0, 0.6); /* soft black shadow */
}

main table tbody td {
    height: 3rem;
    border-bottom: 1px solid var(--gray);
    color: black;
}

main table tbody tr:last-child td {
    border: none;
}

main .tablet a {
    text-align: center;
    display: block;
    margin: 1rem auto;
    color: var(--softGreen);
}

main .tablet .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

main .tablet .pagination button {
    background-color: var(--blue);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 5px;
}

main .tablet .pagination button:hover {
    background-color: var(--white);
    color: #1b1b1b;
}

main .tablet .pagination #currentPage {
    padding: 8px 12px;
    background-color: var(--blue);
    color: white;
    border-radius: 4px;
}