.location-map-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  padding-top: 60px; 
  padding-bottom: 60px; 
}

/* 지도 섹션 */
.location-map-left {
  flex: 1;
  min-height: 600px;
  position: relative;
}

.location-map-map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.location-map-map {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-color: #e5e7eb;
  border-radius: 12px;
}

.location-map-controls {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-map-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-map-control-btn:hover {
  background-color: #f8f8f8;
  transform: scale(1.05);
}

.location-map-control-btn svg {
  color: #333;
}

/* 정보 섹션 */
.location-map-right {
  width: 400px;
  background-color: transparent;
  padding: 0 30px 30px 30px;
  overflow-y: auto;
}

.location-map-info-card,
.location-map-chat-card,
.location-map-directions-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.location-map-info-header,
.location-map-chat-header,
.location-map-directions-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.location-map-icon-building,
.location-map-icon-chat,
.location-map-icon-directions {
  color: #191970;
  stroke: #191970;
  fill: none;
}

.location-map-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
}

.location-map-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.location-map-icon {
  color: #6082b6;
  stroke: #6082b6;
  fill: none;
  margin-top: 2px;
}

.location-map-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-map-copy-link {
  color: #6082b6;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.location-map-copy-link:hover {
  text-decoration: underline;
}

.location-map-subtext {
  font-size: 14px;
  color: #666666;
}

/* 채팅 섹션 */
.location-map-chat-header h3,
.location-map-directions-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.location-map-chat-button {
  width: 100%;
  background-color: #fee500;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-map-chat-button:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
}

.location-map-chat-button svg {
  color: #333;
  stroke: #333;
  fill: none;
}

/* 길찾기 섹션 */
.location-map-transport-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.location-map-transport-item:last-child {
  margin-bottom: 0;
}

.location-map-icon-transport {
  color: #6082b6;
  stroke: #6082b6;
  fill: none;
  margin-top: 2px;
}

.location-map-transport-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-map-transport-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}

.location-map-transport-info p {
  font-size: 15px;
  color: #666666;
}

/* 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.location-map-info-item, 
.location-map-transport-item {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.location-map-info-item:nth-child(1) { animation-delay: 0.1s; }
.location-map-info-item:nth-child(2) { animation-delay: 0.2s; }
.location-map-info-item:nth-child(3) { animation-delay: 0.3s; }
.location-map-info-item:nth-child(4) { animation-delay: 0.4s; }
.location-map-info-item:nth-child(5) { animation-delay: 0.5s; }

.location-map-transport-item:nth-child(1) { animation-delay: 0.6s; }
.location-map-transport-item:nth-child(2) { animation-delay: 0.7s; }
.location-map-transport-item:nth-child(3) { animation-delay: 0.8s; }

/* 반응형 스타일 */
@media (max-width: 1024px) {
  .location-map-container {
    flex-direction: column;
    max-width: 100%;
    border-radius: 0;
    padding: 0;
  }
  
  .location-map-left, .location-map-right {
    width: 100%;
  }
  
  .location-map-left {
    min-height: auto;
  }
  
  .location-map-map {
    height: 400px;
    min-height: auto;
    border-radius: 0;
  }
  
  .location-map-right {
    padding: 15px;
  }
  
  .location-map-info-card,
  .location-map-chat-card,
  .location-map-directions-card {
    margin-top: 15px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .location-map-map {
    height: 350px;
  }
  
  .location-map-title {
    font-size: 20px;
  }
  
  .location-map-info-item, .location-map-transport-item {
    gap: 10px;
  }
  
  .location-map-info-card,
  .location-map-chat-card,
  .location-map-directions-card {
    padding: 15px;
  }
  
  .location-map-chat-header h3,
  .location-map-directions-header h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .location-map-map {
    height: 300px;
  }
  
  .location-map-right {
    padding: 10px;
  }
  
  .location-map-title {
    font-size: 18px;
  }
  
  .location-map-info-item p, 
  .location-map-transport-info p {
    font-size: 14px;
  }
  
  .location-map-info-card,
  .location-map-chat-card,
  .location-map-directions-card {
    padding: 12px;
    margin-top: 10px;
  }
}