
/* ---- Header Styling ---- */
#app-header {
  background-color: #004080 !important; /* HMS blue */
  padding: 15px 20px;
}

#app-header .logo-customized img {
  max-height: 60px;
}

/* ---- User Menu Button ---- */
#header-menu button {
  background-color: #004080 !important;
  color: #fff !important;
  border-radius: 4px;
  font-weight: bold;
}

/* ---- Cart Button ---- */
#cart button {
  background-color: #004080 !important;
  color: #fff !important;
  border-radius: 4px;
}

/* ---- Enrollment Buttons ---- */
button.css-xp5wgu-view--inlineBlock-baseButton,
.css-1l26k27-baseButton__content {
  background-color: #004080 !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 6px;
}

#feature.feature-region {
  background-color: #1BACE3 !important;
}

/* ---- Main Listings Section ---- */
#main {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-top: 4px solid #004080; /* HMS blue accent */
}



/* Add HMS Education Portal Title */
#main-heading::before {
  content: "HMS Education Portal";
  display: block;
  font-size: 2.4em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  color: #004080; /* HMS blue */
  letter-spacing: 2px; /* Adds modern spacing */
  padding-bottom: 12px;
  border-bottom: 3px solid #0072CE; /* Decorative divider in lighter blue */
  position: relative;
}

/* Optional: Add a subtle accent line below the divider */
#mainHere’s a more **stylized version** of your pseudo-heading using the `::before` approach, while keeping it clean and centered:

---

### ✅ Updated Stylized CSS for HMS Education Portal
```css
/* Add HMS Education Portal Title */
#main-heading::before {
  content: "HMS Education Portal";
  display: block;
  font-size: 2.4em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  color: #004080; /* HMS blue */
  padding-bottom: 12px;
  border-bottom: 3px solid #004080; /* Divider line */
  letter-spacing: 2px; /* Adds elegance */
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}

/* Add subtle decorative accent under the divider */
#main-heading::before::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #004080, #0072CE);
  margin: 8px auto 0 auto;
  border-radius: 2px;
}



/* Main Heading (Listings) with Gradient */
#main-heading h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #fff; /* Text color for contrast */
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #004080, #0072CE); /* HMS gradient */
  border-radius: 6px;
}

/* Subheading (Browse Listings) with Gradient */
#listings h2 {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #0072CE, #004080);
  border-radius: 4px;
}

/* No Courses Message */
#listings .h3 {
  display: inline-block;
  background-color: #004080;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1em;
}
