* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin-top: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 11pt;
  line-height: 15pt;
  text-align: center;
}

table {
  width: 600px;
  margin: auto;
  margin-top: 10px;
}

th {
  text-align: left;
  font-weight: bold;
}

table, tr, td, th {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 10px;
}

p {
  text-align: left;
}

li {
  text-align: left;
}

footer {
  font-size: 9pt;
  margin: 10px;
}

.activity{
  background-color:darkgoldenrod;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 1em;
  text-align: center;
  border: 1px solid #ccc;
  vertical-align: middle;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
}

iframe {
  width: 100%;
  max-width: 300px;
  height: 100px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.map-cell {
  position: relative;
  height: 100px;
  background-color:skyblue;
  overflow: hidden;
}

.map-cell iframe {
  width: 100%;
  
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  border: none;
    position: absolute;
  top: 0;
  left: 0;
}
}

.map-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}
.map-cell:hover iframe {
  opacity: 1;
  pointer-events: auto;
}