#faq-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    font-size: 20px;
    padding: 15px;
    padding-left: 17px;
    padding-bottom: 10px;
    padding-right: 17px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #fff;
    color: #000;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.faq-tooltip::after {
    content: "";
    position: absolute;
    left: 93px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent; /* Same color as tooltip background */
	border-left: 6px solid #fff;
}

#faq-chat-icon:hover .faq-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

#faq-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 9998;
    height: 400px;
    overflow-x: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

#faq-close-icon {
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #000;
    font-size: 13px;
}

.faq-answer {
    display: none;
    color: #444;
    padding-top: 5px;
    font-size: 13.5px;
    line-height: 1.3em;
}

span.toggle {
    font-size: 17px;
}
