body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f9;
  color: #333;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #007bff;
  color: #fff;
  position: sticky;
  top: 0;
}

.back-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.title {
  flex-grow: 1;
  text-align: center;
  font-size: 18px;
  margin: 0;
}

.region-combo {
  font-size: 14px;
  padding: 5px;
  border: none;
  border-radius: 5px;
}

.combo-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  background-color: #e9ecef;
  border-bottom: 1px solid #ccc;
}

.combo-box {
  flex: 1;
  font-size: 14px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.main-content {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

.result-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.result-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 5px; /* 줄어든 패딩 */
  font-size: 12px;
  line-height: 1.1; /* 줄 간격 감소 */
}

.result-item .info .nameo {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 2px 0; /* 줄 간격 조정 */
}

.result-item .info .name {
  font-size: 12px;
  color: #555;
}

.result-item .details {
  text-align: right;
  font-size: 12px;
  color: #007bff;
}

