﻿.fs-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 95vh;
    max-width: 95vw;
    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;

    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.fs-popup-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -25px;
    top: -25px;
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
}

.chat {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    position: fixed;
    bottom: 0;
    right: 0;
}

.messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.text-input {
    padding: 0.5rem;
    background-color: #fff;
    border-top: 1px solid #ccc;
}