@font-face {
  font-family: 'Roboto';
  src: url('/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/IBMPlexMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'IBM Plex Mono', 'Roboto', sans-serif;
  position: relative;
}

#top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  z-index: 10;
}

#top-bar a {
  color: #333;
  text-decoration: none;
}

#top-bar a:hover {
  text-decoration: underline;
}

.nav-wrapper-one {
  align-items: center;
  display: flex;
  gap: 20px;
}

.nav-wrapper-two {
  align-items: center;
  display: flex;
  gap: 20px;
}

#logo {
  height: 40px;
}

#logo-no-text {
  height: 100px;
  margin-bottom: 80px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

#spec-selector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

#spec-selector:hover, #spec-selector:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
  outline: none;
}

.select-wrapper::after {
  content: '\25BC';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
}

#spec-selector option {
  padding: 10px;
}

#redoc-container,
#iframe-container {
  height: calc(100vh - 60px);
  padding: 60px 0;
}

#iframe {
  width: 100%;
  height: 100%;
}

#welcome-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 60px);
  text-align: center;
  padding-top: 60px;
}

#welcome-message h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

#welcome-message p {
  font-size: 18px;
}