

/*body {
  
  background: #f6f7f8;
}*/

/* HEADER */
.header {
  height: 56px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* SECTIONS */
.header-left,
.header-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-center {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: 700;
  /*color: #ff4500;*/
  color: #0080ff;
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* ICON BUTTON */
.icon-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
}

.icon-btn:hover {
  background: #eee;
}

/* NOTIFICATION BADGE */
.notif {
  position: relative;
}

.badgeh {
  position: absolute;
  top: 2px;
  right: 2px;
  /*background: #ff4500;*/
  background: #0080ff;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
}

.danger {
  color: #c0392b;
}
.header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}