/* 카카오 지도 스타일 */
.map-container {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* 지도 정보창 스타일 */
.map-info-window {
    padding: 5px;
    min-width: 150px;
    text-align: center;
    border-radius: 4px;
    font-size: 25px;
}

/* 지도 링크 스타일 */
.map-links {
    margin-top: 15px;
    text-align: center;
}

.map-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    color: #3396ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #1c7ed6;
    text-decoration: underline;
}

/* 모바일 대응 스타일 */
@media screen and (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}

/* 문자하기 팝업 스타일 */
.sms-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
}

.sms-popup-content {
    position: relative;
    background-color: #fefefe;
    margin: 100px auto;
    padding: 70px 20px 20px 20px;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    max-height: 70vh;
    overflow-y: auto;
}

.close-sms-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 2;
    background-color: #fefefe;
    padding: 0;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 0 0;
    text-align: center;
    line-height: 1;
}

.sms-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sms-form h3 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'KORAIL', sans-serif;
}

.sms-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sms-form-group label {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    font-family: 'KORAIL', sans-serif;
}

.sms-form-group select {
    padding: 15px;
    font-size: 26px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-family: 'KORAIL', sans-serif;
}

.time-selector {
    display: flex;
    gap: 10px;
}

.time-selector select {
    flex: 1;
}

.sms-submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'KORAIL', sans-serif;
}

.sms-submit-btn:hover {
    background-color: #c0392b;
}

/* 스크롤바 스타일링 */
.sms-popup-content::-webkit-scrollbar {
    width: 18px;
}

.sms-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.sms-popup-content::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

.sms-popup-content::-webkit-scrollbar-thumb:hover {
    background: #d44637;
} 