

#map-container {
    margin: 10px;
    margin-right: 30px;
    /* Add margin to the right side of the map container */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 700px;
    height: 600px;
    overflow: hidden;
}

#map {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../img/map.png');
    /* 지도 이미지 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;

}
#map div:hover{

    border-top-left-radius: 15px; 
    border-top-right-radius: 15px; 
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; 
    opacity: 0.7;

}
.map-box {
    position: sticky;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

#description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    float: none;
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 20px;
}

#description p {
    font-size: 1.1rem;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 30px;
}

#description-store-1,
#description-store-2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 30px;
  margin-right: 30px;
}

#description-img-1,
#description-img-2 {
  width: 200px;
  max-height: 150px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#description-text-1,
#description-text-2 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
}


  footer {
    width: 100%;
    position: relative;
    bottom: 0;
  }

/* 반응형 수정 */
@media (max-width: 1300px) {
    #map-container {
        width: 100%;
    }
}