/* logout button style */
#logout {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  margin: 6px 10px;
  padding: 6px 14px !important;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, transform .15s;
  display: flex !important;
  align-items: center;
  gap: 6px;
}
#logout:hover {
  background: #ef4444 !important;
  color: #fff !important;
  transform: scale(1.04);
}
