/* ================================
   📌 Style for Desktop Header
   ================================ */
   body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.custom-header {
  background-color: #0e5359;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
top: 40;
left: 0;
width: 100%;
z-index: 1000; /* jate sob element-er upore thake */

}

.custom-header-logo-section {
  display: flex;
  align-items: center;
  padding-top: 5px;
}

.custom-header-logo {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  margin-bottom: 8PX;
}

.custom-header-brand {
  font-weight: bold;
  color: #e0f7fa;
  margin-top: -5px;
}

.custom-header-launch {
  color: #80deea;
}

.custom-header-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.custom-header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.custom-header-nav-item {
  text-decoration: none;
  color: #b2dfdb;
  font-size: 14px;
}

.custom-header-status-label {
  color: #b2dfdb;
  font-size: 14px;
}

.custom-header-status-button {
  background-color: #ccc;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
}

.custom-header-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-header-profile-pic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.custom-header-profile-name {
  font-size: 14px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-header-nav {
    display: none;
  }

  .custom-header-menu-icon {
    display: block;
  }
}
