body {
  background-color: #f8f9fa;
}

.card {
  margin-top: 20px;
}

.navbar-brand {
  font-weight: bold;
}

.container-mdx {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section {
  padding: 30px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.section:last-child {
  border-bottom: none;
}

.section-number {
  position: absolute;
  left: 15px;
  top: 30px;
  width: 32px;
  height: 32px;
  background: #0078d4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 1;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  margin-left: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.inline {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.select-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

select {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  font-size: 14px;
  color: #333;
  appearance: none;
}

select:focus {
  border-color: #0078d4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
}

.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 12px;
  pointer-events: none;
}

input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

input[type="text"]:focus {
  border-color: #0078d4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
}

input[type="text"]::placeholder {
  color: #999;
}

.checkbox-group {
  margin: 20px 0;
  margin-left: 30px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #0078d4;
}

.checkbox-item label {
  margin-bottom: 0;
  font-weight: 500;
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 30px;
  margin: 15px 0;
  margin-left: 30px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #0078d4;
}

.radio-item label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
}

.info-text {
  margin-left: 30px;
  margin-top: 15px;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.search-section {
  margin: 20px 0;
  margin-left: 30px;
}

.search-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.search-button {
  background: #0078d4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 15px;
}

.search-button:hover {
  background: #106ebe;
}

.search-bar {
  position: relative;
}

.search-bar input {
  padding-right: 40px;
}

.search-bar::after {
  content: '🔍';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  margin-left: 30px;
}

.toggle {
  position: relative;
  width: 50px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle.active {
  background: #0078d4;
}

.toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle.active::before {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 14px;
  color: #666;
}

.four-column {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 15px;
  margin-left: 30px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.single-column {
  margin-left: 30px;
}

.autocomplete-results {
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
}

.autocomplete-item {
    padding: 8px;
    cursor: pointer;
}

.autocomplete-item:hover, .autocomplete-item.selected {
    background-color: #f0f0f0 !important;
}