.menu_dash_board {
    width: 600px;
    padding: 20px;
    margin: 0 auto;
}

.menu_dash_board ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.dash {
    min-width: 150px;
    box-shadow: 0px 0px 5px black;
    border-radius: 20px;
    margin: 20px;
    overflow: hidden;
}

.dash_topo {
    border-radius: 20px 20px 0px 0px;
    background-color: var(--cor-padrao);
    padding: 10px;
    display: flex;
    justify-content: center;
    font-weight: 600;
}

.dash_topo a {
    color: black;
    text-decoration: none;
}

.dash_content {
    font-weight: 600;
    font-size: 36px;
    padding: 10px;
    display: flex;
    justify-content: space-around;
}

.dash_content h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}

.encaminhamentos {
    min-width: 50px;
    box-shadow: 0px 0px 5px black;
    border-radius: 10px;
    margin: 0px 5px;
}

.encaminhamentos_topo {
    background-color: var(--cor-padrao);
    display: flex;
    justify-content: center;
    font-size: 12px;
    padding: 5px;
    border-radius: 10px 10px 0px 0px;
}

.encaminhamentos_content {
    display: flex;
    justify-content: center;
    margin: 5px;
}

.dash_rodape {
    border-radius: 0px 0px 20px 20px;
    background-color: var(--cor-padrao);
    padding: 10px;   
    height: 100%;
}

.dash_rodape ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dash_rodape a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}