/* ket-topbar.css */
.topbar {
  background: #07111f;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#loader {
  position: fixed;
  inset:0;
  background: rgba(7,17,31,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  font-size:22px;
  font-weight:600;
  color:white;
}
.loader-spinner {
  border: 6px solid rgba(255,255,255,0.2);
  border-top: 6px solid #42b3ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}
@keyframes spin {
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}
.top-avatar{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(66,179,255,0.5);
  background:#13253b;
  flex-shrink:0;
}