.foto-perfil-container {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
}

.foto-perfil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.alterar-foto-overlay {
    display: none;
    position: absolute;
    font-weight: 600;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%; /* Torna o fundo circular */
    cursor: pointer; /* Adiciona o cursor pointer ao passar o mouse */
}

.alterar-foto-overlay i {
    position: absolute;
    top: 25%; /* Ajusta a posição do ícone para ficar acima do texto */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px; /* Tamanho do ícone */
}

.alterar-foto-overlay p {
    position: absolute;
    top: 60%; /* Ajusta a posição do texto para ficar abaixo do ícone */
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.2; /* Diminui o espaçamento entre linhas */
}

.status_usuario_online {
    color: green;
    font-size: 12px;
}

.status_usuario_offline {
    color: #717171;
    font-size: 12px;
}