/* button containers */


/* buttons */
.basic-button {
    /* size */
    padding: 7px 1rem;
    margin: 1rem;
    height: 2rem;

    /* border */
    border-style: solid;
    border-radius: 0.5rem;
    border-color: var(--gray);
    border-width: 2px;

    /* text */
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;

    /* color */
    background-color: rgba(248, 248, 248, 1);
    color: rgb(32, 32, 32);

    /* display */
    display: table;
    user-select: none;
    cursor: pointer;
}

.basic-button:hover {
    background-color: var(--gray);
    border-color: var(--gray);
    color: rgb(48, 48, 48);
    transition: all 200ms ease-in-out;
}

.basic-button.disabled {
    background-color: rgba(224, 224, 224);
    color: rgb(128, 128, 128);
    cursor: default;
}

.basic-button i {
    margin-right: 0.5rem;
}

/* containers */
.basic-button-container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

/* references */
.basic-button-a {
    text-decoration: none;
}

/* nav buttons (used in navbar and sidebar) */
.nav-button-a {
    text-decoration: none;
}

.nav-button {
    padding: 0.5rem;
    order: 1;

    height: 3rem;

    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;

    color: var(--text-inactive);
    font-family: var(--main-font), sans-serif;

    text-wrap: nowrap;

    cursor: pointer;

    user-select: none;
}

.nav-button:hover {
    color: var(--text-light);
    transition: color 200ms ease-in-out;
}

.nav-button.active {
    color: var(--text);
}

.nav-button i {
    padding-right: 0.5rem;
}

/* Responsiveness */
/* md screen */
@media only screen and (max-width: 1200px) {

}

/* sm screen */
@media only screen and (max-width: 992px) {
    .dashboard-button-a {
        flex: 1 0 45%;
        max-width: 50%;
    }

}

/* xs screen */
@media only screen and (max-width: 768px) {

}

/* xxs screen */
@media only screen and (max-width: 500px) {

}
