
/* CSS */
.chat-open-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #52a3ffd3;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 50px;
    cursor: pointer;
    font-size: 10px;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem; /* Adjust top/bottom and left/right padding */
    display: inline-flex; /* Aligns icon and text inline */
    align-items: center; /* Vertically aligns icon and text */

}
.link-to-chat{
 background: #52a3ffd3;
  border-radius: 2px;
  padding: 1px;
  color: white;
  padding: 0.5rem 1rem;
}

.link-to-chat:hover {
    background: #0f7fffd3;
    color: #fff;

}
/* CSS */
.chat-screen {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    z-index: 1000;
}
