.softphone {
    width: 300px;
    height: 450px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.softphone iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 상담 스크립트 프레임 스타일 */
.script {
    width: 800px;
    height: 600px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: white;
}

.script iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 고객 여정 프레임 스타일 */
.journey {
    width: 800px;
    height: 600px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: white;
}

.journey iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 소프트폰 토글 버튼 스타일 */
.softphone-toggle-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: all 0.3s;
}

.softphone-toggle-btn i {
    font-size: 1.5rem;
}

/* 소프트폰/스크립트 숨김 클래스 */
.softphone.hidden,
.script.hidden,
.journey.hidden {
    transform: translateX(350px);
    opacity: 0;
    visibility: hidden;
}

#clickToDial1, #clickToDial2 {
    cursor: pointer;
    color: #0056b3;
    font-weight: 500;
    text-decoration: underline;
}

.card-body {
	display: flex;
	flex-direction: column;
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    .softphone {
        width: 300px;
        height: 450px;
    }
    .script {
        width: 80%;
        height: 450px;
    }
    .journey {
        width: 80%;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .softphone,
    .script,
    .journey {
        position: static;
        width: 100%;
        height: 450px;
        margin-bottom: 20px;
    }
    
    .softphone.hidden,
    .script.hidden 
    .journey.hidden {
        height: 0;
        margin-bottom: 0;
        transform: translateY(-20px);
    }
    
    .softphone-toggle-btn {
        bottom: 15px;
        right: 15px;
    }
}