/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
} */

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 1;
}

.title {
  font-size: 2.5rem !important;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1.1rem !important;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.main-content {
  flex: 1;
  padding: 2rem 1rem !important;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.controls-container {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid #f0f0f0;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}

.control-group label {
  font-weight: 600;
  color: #444;
  font-size: 0.95rem;
}

.select-dropdown {
  width: 100%;
  padding: 0.875rem 1rem !important;
  font-size: 1rem !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  color: #333 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23910694' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.select-dropdown:hover {
  border-color: #FB0E76;
}

.select-dropdown:focus {
  outline: none;
  border-color: #FB0E76;
  box-shadow: 0 0 0 3px rgba(251, 14, 118, 0.1);
}

.generate-btn {
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
  color: #ffffff;
  border: none !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 600;
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(251, 14, 118, 0.3);
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 14, 118, 0.4);
}

.generate-btn:active {
  transform: translateY(0);
}

.generate-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.2rem;
}

.results-container {
  background: #ffffff;
  border-radius: 12px !important ;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table th {
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
  color: #ffffff !important;
  padding: 1rem !important;
  text-align: left !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.results-table td {
  padding: 1rem !important;
  border-bottom: 1px solid #ebe3e3 !important;
  vertical-align: middle;
	border-right:1px solid hsl(0deg 0% 50.2% / 9%) !important;
	border-top:1px solid hsl(0deg 0% 50.2% / 9%) !important;
	border-left:1px solid hsl(0deg 0% 50.2% / 9%) !important;
}

.results-table tbody tr {
  transition: background-color 0.2s ease;
}

.results-table tbody tr:hover {
  background-color: #fafafa;
}

.results-table tbody tr:last-child td {
  border-bottom: none!important;
}

.location-name {
  font-weight: 600;
  color: #333;
}

.location-state {
  color: #666 !important;
  font-size: 0.95rem !important;
}

.location-country {
  color: #888;
  font-size: 0.95rem;
}

.references {
  display: flex;
  gap: 0.75rem;
}

.ref-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem !important;
  font-size: 0.85rem !important;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px !important;
  transition: all 0.2s ease;
}

.ref-link.map {
  background-color: #f0f0f0;
  color: #666;
}

.ref-link.map:hover {
  background-color: #e0e0e0;
  color: #333;
}

.ref-link.wiki {
  background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
  color: #ffffff;
}

.ref-link.wiki:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f0f0f0;
  border-top-color: #FB0E76;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading p {
  color: #666;
  font-size: 0.95rem;
}

.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 2rem 1rem !important;
  }

  .title {
    font-size: 1.8rem !important;
  }

  .subtitle {
    font-size: 1rem !important;
  }
	.main-content{
		padding:0px !important;
	}

  .controls-container {
    padding: 1.5rem;
  }

  .results-table {
    display: block;
    overflow-x: auto;
  }

  .results-table th,
  .results-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .references {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ref-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .generate-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .results-table th,
  .results-table td {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
}
