/* gov-display-style.css */

.gd-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1a1a1a;
}

.gd-initial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.gd-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
}

.gd-title-sub {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  letter-spacing: 3px;
}

.gd-search-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.gd-dropdown-wrapper {
  position: relative;
  flex: 1;
}

.gd-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  outline: none;
}

.gd-input:focus {
  border-color: #333;
}

.gd-input-top {
  padding: 9px 12px;
  font-size: 13px;
}

.gd-btn {
  padding: 13px 20px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #333;
  background: #333;
  color: #fff;
  white-space: nowrap;
}

.gd-btn:hover {
  background: #000;
}

.gd-btn-sm {
  padding: 9px 14px;
  font-size: 13px;
}

.gd-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 360px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  z-index: 9999;
  display: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: left;
}

.custom-option {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  text-align: left;
}

.custom-option:hover {
  background: #f7f7f7;
}

.custom-option strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.custom-option span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
  text-align: left;
}

.gd-header {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.gd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gd-header-title {
  font-size: 18px;
  font-weight: 600;
}

.gd-header-badge {
  font-size: 12px;
  color: #999;
  letter-spacing: 2px;
}

.gd-header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gd-content {
  display: block;
}

.gd-detail {
  font-size: 14px;
  line-height: 1.7;
}

.gd-detail h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.gd-detail p {
  margin: 6px 0;
}