@charset "utf-8";
.form-section {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  margin-bottom: 1.5rem
}
.form-section h2 {
  font-weight: 600;
  color: var(--md-primary);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px
}
.form-section h3 {
  font-weight: 600;
  color: var(--md-primary);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem
}
.form-group {
  margin-bottom: .5rem
}
.form-control {
  width: 100%;
  padding: .75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: Roboto,sans-serif;
  font-size: 1rem;
  transition: border-color .3s
}
.form-control:focus {
  outline: 0;
  border-color: #0073e6;
  box-shadow: 0 0 0 2px rgba(0,115,230,.1)
}
textarea.form-control {
  min-height: 100px;
  resize: vertical
}
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}
@media (max-width:768px) {
  .input-row {
    grid-template-columns: 1fr
  }
}
.location-type-selector {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem
}
.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}
.radio-option {
  display: flex;
  align-items: center;
  gap: .5rem
}
.radio-option input {
  margin: 0
}
.location-fields {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee
}
.location-fields.hidden {
  display: none
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem
}
.checkbox-group input {
  margin: 0
}
.btn {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: 5px;
  font-family: Montserrat,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}
.btn:hover {
  background: #0056b3
}
.btn-secondary {
  background: #6c757d
}
.btn-secondary:hover {
  background: #545b62
}
.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem
}
.preview-section {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  height: fit-content;
  position: sticky;
  top: 20px
}
.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #f0f0f0
}
.output-header h2 {
  font-family: Montserrat,sans-serif;
  font-weight: 600;
  color: var(--md-primary);
  margin: 0
}
.copy-btn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: Roboto,sans-serif;
  font-weight: 500
}
.copy-btn:hover {
  background: #218838
}
.json-output {
  background: #1e1e1e;
  color: #dcdcdc;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  font-family: Consolas,Monaco,monospace;
  font-size: .9rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  min-height: 300px
}
.json-output .key {
  color: #9cdcfe
}
.json-output .string {
  color: #ce9178
}
.json-output .number {
  color: #b5cea8
}
.json-output .boolean {
  color: #569cd6
}
.json-output .null {
  color: #c586c0
}
.info-section {
  margin: 3rem 0
}
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.1)
}
.info-card h3 {
  font-family: Montserrat,sans-serif;
  color: #0073e6;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px
}
.faq-section {
  margin: 3rem 0
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.1)
}
.faq-question {
  font-family: Montserrat,sans-serif;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer
}
.faq-answer {
  color: #666;
  line-height: 1.6
}
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 3rem 0;
  margin-top: 3rem
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem
}
.footer h3 {
  font-family: Montserrat,sans-serif;
  margin-bottom: 1rem;
  color: #3498db
}
.footer-links {
  list-style: none
}
.footer-links li {
  margin-bottom: .5rem
}
.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color .3s
}
.footer-links a:hover {
  color: #3498db
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #34495e;
  color: #bdc3c7
}
.tooltip {
  font-size: .9rem;
  color: #666;
  margin-top: .25rem;
  display: block
}
.badge {
  display: inline-block;
  padding: .25rem .5rem;
  background: #e3f2fd;
  color: #0073e6;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 500;
  margin-left: .5rem
}
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  display: none
}