/* ===== TOP BAR SOPHISTIQUÉ ===== */

.top-actions{

  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:32px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 12px;

  background:linear-gradient(90deg,#1e3a8a,#2563eb);
  color:white;

  box-shadow:0 2px 8px rgba(0,0,0,0.15);

  font-family:system-ui;
  z-index:9999;
}

/* zones */

.left-actions,
.center-info,
.right-actions{
  display:flex;
  align-items:center;
}

/* user */

.center-info{
  gap:6px;
  font-size:12px;
  font-weight:600;
}

.user-avatar{
  font-size:14px;
}

/* buttons */

.top-actions .btn{

  display:flex;
  align-items:center;
  gap:5px;

  border:none;
  cursor:pointer;

  padding:3px 10px;

  font-size:12px;
  font-weight:600;

  border-radius:6px;

  transition:all .2s ease;
}

/* accueil */

.btn.primary{
  background:#1d4ed8;
  color:white;
}

.btn.primary:hover{
  background:#1e40af;
}

/* logout */

.btn.danger{
  background:#dc2626;
  color:white;
}

.btn.danger:hover{
  background:#b91c1c;
}

/* body spacing */

body{
  margin-top:32px;
}