html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    background-color: rgb(74, 84, 87);
}

a.botao-acao {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

a.botao-acao:hover {
    color: #ccc;
}

i.bi {
    font-size: 1.4rem;
}

i.bi:hover {
    color: #212325;
}

i.bi-currency-dollar {
    color: rgb(56, 180, 56);
}

i.bi-pencil {
    color: rgb(26, 108, 201);
}

i.bi-eye-fill {
    color: rgb(57, 189, 116);
}

i.bi-whatsapp {
    color: rgb(0, 133, 7);
}

i.bi-trash {
    color: red;
}

i.bi-cash-stack {
    color: green;
}

i.bi-image {
    color: #d180b0;
}

i.bi-person-circle {
    color: #b62ba3;
}

i.bi-trash3-fill {
    font-size: 0.9rem;
    padding: 1px;
}

i.bi-megaphone-fill {
    color: #80d192;
}

i.bi-card-heading {
    color: #eebd22;
}

i.bi-house-door-fill {
    color: #d31717;
}

i.bi-file-pdf-fill {
    color: #d31717;
}

i.bi-file-earmark-spreadsheet {
    color: green;
}

a.dropdown-item:hover {
    background-color: #ccc;
}

.grupo-acoes {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
}

.boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 100px;
    border-radius: 10px;
}

.box p {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .grupo-acoes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .grupo-acoes a {
        width: 100%;
    }

    tr,
    th {
        font-size: 0.8rem;
    }

    .boxes {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 100px;
        border-radius: 10px;
    }

    .box p {
        font-size: 1.4rem;
    }

}

@media screen and (max-width: 385px) {
    .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100px;
        border-radius: 10px;
    }

    .box p {
        font-size: 1.4rem;
    }
}