.caixa_user {
    margin-top: 1rem;
    width: 10rem;
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid transparent;
    border-radius: 3px;
    background-clip: padding-box;
    position: relative;
    z-index: 0;
}

.caixa_user::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(150deg, rgb(101, 117, 212), rgb(119, 162, 231));
    border-radius: 8px;
    z-index: -1;
}

.caixa_user img {
    width: 100%;
    height: 100%;
}

.small_box {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    height: max-content;
    width: 200px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0453E4;
}

.small_box_itens_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 190px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    justify-content: center;
    align-items: start;
    background-color: #EBF5FF;
}

.small_box_menu {
    width: 190px;
    height: 30px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    font-size: 14px;
    color: #ccc;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    background: #0453E4;
    background: linear-gradient(#0058ee, #3593ff 4%, #288eff 6%, #127dff 8%, #036ffc 10%, #0262ee 14%, #0057e5 20%, #0054e3 24%, #0055eb 56%, #005bf5 66%, #026afe 76%, #0062ef 86%, #0052d6 92%, #0040ab 94%, #003092);
}

.small_box_menu button img {
    height: 1.5rem;
    width: 1.5rem;
    display: block;
}

#linha_divisoria_caixa_interna_content {
    width: 200px;
    height: 2px;
    background-color: rgb(101, 117, 212);
    margin-top: 2px;
    margin-bottom: 2px;
}

.link {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}