.chat-circle {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 1000;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.chat-icon {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-image: url('/img/isa.jpeg');
    background-size: cover;
}

.chat-btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.chat-box {
    position: fixed;
    bottom: 180px;
    right: 40px;
    width: 350px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1000;
}

.chat-content {
    padding: 20px;
}

.chat-message {
    padding: 16pt;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: #eeeeee; 
    color: #333; 
    display: inline-block; 
    word-wrap: break-word;
    width: 100%;
}

.option-btn {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f08742;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    text-align: right;
}

.option-btn:last-child {
    margin-bottom: 0;
}

.chat-header {
    border-radius: 10px 10px 0px 0px;
    background-color: #f08742;
}

.chat-header img {
    border-radius: 100%;
}

.minimized {
    display: none;
}
.fadeIn {
    animation: fadeInAnimation 0.5s ease-in-out;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}