/*==================================================
Header
==================================================*/

.meh-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:82px;
  background:#fff;
  z-index:1100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 35px;
  border-bottom:1px solid #e8edf3;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

/* LEFT */
.meh-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.meh-menu-toggle {
  width: 42px;
  height: 42px;
  border: none;
  background: #f3f6fb;
  border-radius: 10px;
  cursor: pointer;
  color: #17315d;
  transition: .3s;
}

.meh-menu-toggle:hover {
  background: #e6eef9;
}

.meh-menu-toggle i {
  font-size: 18px;
}

.meh-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meh-logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #204ce5, #00b6b5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.meh-logo h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.blue {
  color: #17315d;
}

.green {
  color: #00b6b5;
}

/* CENTER */
.meh-header-center {
  flex: 1;
  margin-left: 70px;
}

.meh-header-center h3 {
  margin: 0;
  font-size: 22px;
  color: #17315d;
}

.meh-header-center p {
  margin-top: 5px;
  color: #7b8794;
  font-size: 14px;
}

/* RIGHT */
.meh-header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Progress */
.meh-progress {
  width: 220px;
}

.meh-progress-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.meh-progress-text small {
  color: #6b7280;
}

.meh-progress-text strong {
  color: #17315d;
}

.meh-progress-bar {
  width: 100%;
  height: 8px;
  background: #e9edf4;
  border-radius: 50px;
  overflow: hidden;
}

.meh-progress-fill {
  width: 56%;
  height: 100%;
  background: #00b6b5;
  border-radius: 50px;
}

/* Notification */
.meh-notification {
  position: relative;
  width: 46px;
  height: 46px;
  border: none;
  background: #f3f6fb;
  border-radius: 50%;
  cursor: pointer;
  color: #17315d;
  font-size: 18px;
}

.badge {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 18px;
  height: 18px;
  background: #ff4d4f;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User */
.meh-user {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.meh-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.meh-user-info {
  display: flex;
  flex-direction: column;
}

.meh-user-info strong {
  color: #17315d;
  font-size: 15px;
}

.meh-user-info small {
  color: #7b8794;
  font-size: 13px;
}

.meh-user i {
  color: #6b7280;
}

/* Responsive */
@media(max-width:1200px) {
  .meh-progress {
    display: none;
  }
}

@media(max-width:900px) {
  .meh-header-center {
    display: none;
  }
}

@media(max-width:600px) {
  .meh-user-info {
    display: none;
  }

  .meh-logo h2 {
    font-size: 24px;
  }
}