/* chat icon styles */
.chat-icon {
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    background-color: #DA3032;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.chat-icon img {
    width: 30px;
    height: 30px;
}

/* iframe styles */
#chat-frame {
    position: fixed;
	overflow: hidden !important;
    bottom: 80px;
    right: 30px;
    width: 350px !important;
    height: calc(100vh - 30%) !important;
    max-height: 500px !important;
    z-index: 1001;
    box-shadow: 0 8px 24px #515b3a !important;
    border-radius: 8px;
    display: none;
    border: none;
    background: white;
}

/* responsive iframe override for mobile */
@media (max-width: 435px) {
    #chat-frame {
        width: 100% !important;
        height: 100% !important;
		max-height: 100% !important;
		overflow: hidden !important;
		z-index: 99999 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        bottom: 0 !important;
        right: 0 !important;
        top: 0 !important;
        left: 0 !important;
    }
}

@media (max-height: 435px) and (orientation: landscape){
    #chat-frame {
        width: 100% !important;
        height: 100% !important;
		max-height: 100% !important;
		overflow: hidden !important;
		z-index: 99999 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        bottom: 0 !important;
        right: 0 !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}