body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f8f9fa, #e3e3e3);
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background: linear-gradient(45deg, #3a3a3a, #5a5a5a);
  color: white;
  padding: 40px 20px;
  font-size: 42px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.sticky-wrapper{
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  margin: 50px auto;
  max-width: 800px;
  padding: 30px;
  background: white;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  text-align: center;
}

.container-program {
  max-width: none;
  width: 90%;
  text-align: left;
}

.api-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.api-title {
  font-size: 22px;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  flex: 1;
  min-width: 250px;
  margin: auto;
  justify-content: center;
}

.api-title-omb {
  background: linear-gradient(45deg, rgba(241, 237, 248, 0.9), rgba(223, 213, 246, 0.9));
  color: #52327d;
}

.api-title-omf {
  background: linear-gradient(45deg, rgba(230, 245, 255, 0.9), rgba(200, 230, 255, 0.9));
  color: #0056b3;
}

.api-title-oms {
  background: linear-gradient(45deg, rgba(220, 255, 220, 0.9), rgba(180, 235, 180, 0.9));
  color: #247a3d;
}

.api-title:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.logo {
  width: 50px;
  height: auto;
}

.note {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
}

nav.navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

nav.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

nav.navbar a:hover {
  background-color: #e3e3e3;
  color: #0056b3;
}
/* --- Custom Scalar styles --- */

.container,
.scalar-app .content {
  
}
