/* 레이아웃 CSS */

/* --------------- map --------------- */

#map {
  width: 100%;
  height: 500px;
}

.map iframe {
  width: 100%;
  border: solid 1px #ccc;
  padding: 2px;
  background: #fff;
}

.map-container {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
}

.de-map-hotspot {
  position: relative;
}

.de-map-hotspot img {
  width: 100%;
}

.de-spot {
  padding: 0;
  margin: 0;
  position: absolute;
  vertical-align: center;
  text-align: center;
}

.de-spot span {
  position: absolute;
  display: inline-block;
  background: #ffffff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  left: 30px;
  line-height: 1.8em;
  color: #35404e;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
.dark-scheme .de-spot span {
  background: none;
  color: #ffffff;
  border: solid 2px rgba(255, 255, 255, 0.25);
}

.de-circle-1 {
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  margin: 5px 0 0 5px;
  left: 31%;
}

.de-circle-2 {
  border: 4px solid var(--primary-color);
  -webkit-border-radius: 30px;
  height: 25px;
  width: 25px;
  position: absolute;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
  left: 31%;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

/* --------------- map --------------- */
/* 스케줄 테이블 - 이미지와 동일한 스타일 */
.schedule-table {
  width: 100%;
  background-color: #2a2a2a;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0;
  overflow: hidden;
  margin-top: 2rem;
}

/* 헤더 스타일 - 이미지와 정확히 동일 */
.schedule-table thead th {
  background-color: #b8860b;
  color: #000;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  border: none;
}

.schedule-table thead th:first-child {
  width: 80px;
}

.schedule-table thead th:nth-child(2) {
  width: 50%;
}

.schedule-table thead th:last-child {
  width: 40%;
}

/* 테이블 행 스타일 - 이미지와 동일 */
.schedule-table tbody tr {
  background-color: #2a2a2a;
  border-bottom: 1px solid #444;
}

.schedule-table tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.schedule-table tbody td {
  padding: 15px 20px;
  border: none;
  vertical-align: middle;
  color: #fff;
  font-size: 0.95rem;
}

/* 순서 번호 스타일 */
.schedule-table tbody td:first-child {
  font-weight: bold;
  color: #d4af37;
  text-align: center;
}

/* 내용 스타일 */
.schedule-table tbody td:nth-child(2) {
  font-weight: 500;
}

/* 출연진 스타일 */
.schedule-table tbody td:last-child {
  color: #ccc;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .schedule-table {
    font-size: 0.85rem;
  }

  .schedule-table thead th,
  .schedule-table tbody td {
    padding: 12px 15px;
  }

  .schedule-table thead th:first-child {
    width: 60px;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .schedule-table thead th,
  .schedule-table tbody td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}
