/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 25 2025 | 20:50:11 */
/* Estilo refinado do botão de logout no card de usuário logado */
.card-body a.btn {
  transition: background 0.3s ease, transform 0.2s ease;
}
.card-body a.btn:hover {
  background-color: #8b1d2c;
  transform: scale(1.05);
}

/* ----------- AQUI VAI O CSS DO USUARIO LOGADO MINI ----------------- */

.usuario-mini {
  font-family: system-ui, sans-serif;
  transition: all 0.3s ease;
}
.usuario-mini a.btn {
  transition: background 0.3s ease, border 0.3s ease;
  padding: 3px;
  border-radius: 3px;
}
.usuario-mini a.btn:hover {
  background-color: #b02a37;
  color: white;
  border-color: #b02a37;
}
.usuario-mini i.bi {
  font-size: 1rem;
  vertical-align: text-top;
  margin-right: 5px;
}
