/* -------------------------------------------------------------------
   CUSTOMER HEADER COMPONENT STYLING
------------------------------------------------------------------- */

.cust-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(15, 43, 92, 0.04);
}

.cust-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
}

.cust-header-greeting {
  display: flex;
  flex-direction: column;
}

.cust-greeting-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.cust-greeting-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0f2b5c;
}

.cust-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cust-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f2b5c;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.cust-header-btn:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #2563eb;
}

.cust-header-btn.notif-btn {
  color: #2563eb;
}

.cust-header-btn.signout-btn {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.cust-header-btn.signout-btn:hover {
  background-color: #fee2e2;
  border-color: #fca5a5;
}

.notif-pill {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 9999px;
  padding: 0.1rem 0.35rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .cust-header-greeting {
    display: none;
  }
  .cust-header-btn .btn-text {
    display: none;
  }
  .cust-header-btn {
    padding: 0.5rem;
    font-size: 1.1rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
}
