@charset "utf-8";
    /* 16:9 비율로 설정 */
    #map {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 비율 설정 */
    position: relative; 
    border-radius: 5px;
    box-shadow: 1px 1px 2px 2px #f0f0f0;
    margin-top: 90px;
}

.infowindow-content {
    width: 315px;
    padding: 10px;
    font-size: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
    background-color: #fff;
}

.infowindow-title {
    font-weight: bold;
    font-size: 16px; 
    margin-bottom: 5px;
}

.infowindow-subtitle {
    color: #666;
    font-size: 14px; 
    line-height: 1.2;
}

.infowindow-phone {
    color: #2db400;
    margin-top: 10px;
    font-size: 13px;
}

.infowindow-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background-color: #f00;
    color: white;
    padding: 0px 5px;
    border-radius: 3px;
    font-size: 15px;
}

.infowindow-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.infowindow-action {
    background-color: #007BFF;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .infowindow-title {
        font-size: 14px;
    }

    .infowindow-subtitle { 
        font-size: 12px; 
    }

    .infowindow-content {
        width: 195px;
    }

    .infowindow-close { 
        font-size: 11px;
    }

 }

 
@media only screen and (max-width: 576px) { 
    .infowindow-title {
        font-size: 12px;
    }

    .infowindow-subtitle { 
        font-size: 10px; 
    }

    .infowindow-content {
        width: 150px;
    }

    .infowindow-close { 
        font-size: 9px;
    }

    .infowindow-phone { 
        margin-top: 5px;
        font-size: 11px;
    }
}

/* Mobile Start*/
@media only screen and (max-width: 375px) {
    .infowindow-title {
        font-size: 9px;
    }
    .infowindow-subtitle { 
        font-size: 8px;
        margin-bottom: 1px;
    }
    .infowindow-phone {
        font-size: 8px;
    }

    .infowindow-close { 
        padding: 2px 4px; 
        font-size: 8px;
        line-height: 9px;
    }

    .infowindow-content {
        width: 130px;
        padding: 5px;
    }

    .infowindow-phone {
        margin-top: 0; 
    }

    .infowindow-close {
        top: 5px; 
    }
}