body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
}


/* Chat styles */
.chat-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    z-index: 1200;
    border-radius: 16px;
}

.chat-container-scroll {
    height: 300px;
    overflow-y: auto;
}

.chat-bubble-text {
    max-width: 250px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
    hyphens: auto;
}

@media (max-width: 768px) {
    .chat-popup {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        z-index: 1300 !important;
    }

    .chat-container-scroll {
        height: calc(100vh - 120px) !important;
    }

    .chat-bubble-text {
        max-width: calc(100vw - 80px) !important;
    }
}
