nav {
    background-color: #00897b;
}

li {
    padding: 0 10px;
    font-size: 1.2rem;
}

p {
    margin-bottom: 0;
}

.navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
}

.navbar-collapse::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.navbar-collapse.show {
    transform: translateX(0);
}

.navbar-collapse.show::before {
    opacity: 1;
}

#full_page {
    position: fixed;
    z-index: 12;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, .7);
    display: none;
}

.table-padding {
    padding: 0.5rem 0.5rem;
}

.circle {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anchored {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #00897b;
}

.plus {
    color: white;
    font-size: 30px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.centerForm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.nav-item.active {
    opacity: 0.5;
}

.mininav {
    border-bottom: #00897b 1px solid
}

.row .selected {
    border-bottom: #00897b 2px solid;
}

.lesspadding {
    padding: 0.3rem 0.3rem;
}

.minimalistic-button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 1rem;
}