.magy-logo{
    position: fixed;
    bottom: 50px;
    right: 80px;
    z-index: 9999;
}

@media (max-width: 991px) {
    .magy-logo{
        display: none;
    }
} 

/* Styling for the chat icon container */
.chat-icon-container {
    position: fixed;
    bottom: 20px; /* Adjust the distance from the bottom as needed */
    right: 50px; /* Adjust the distance from the right as needed */
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    border-radius: 50px; /* Make it circular */
    padding: 10px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Styling for the chat icon */
.chat-icon {
    font-size: 24px;
    margin-left: 10px; /* Adjust the margin to separate the icon and text */
}

.chat-close {
    /* send right *? */
    font-size: 24px;
    margin-left: 10px; /* Adjust the margin to separate the icon and text */
    align-items: right;
    text-align: right;
    cursor: pointer;   
}

/* Styling for the text */
.chat-text {
    font-weight: bold;
}

/* Hover effect */
.chat-icon-container:hover {
    background-color: #0056b3; /* Darker color on hover */
}

/* Styling for the chat box (hidden by default) */
.chat-box {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    height: 80%;
    z-index: 9999;
    border: 2px solid; /* Blue border */
    border-radius: 20px; /* Rounded corners */
    margin: 10px auto;
    overflow: hidden;
}

/* Styling for the chat box content */
.chat-box-content {
    padding: 20px;
    height: 83%;
    overflow-y: scroll;
}

.chat-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: .5rem 1.7rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
    z-index: 9999;
}

/* Media query for mobile */
@media (max-width: 896px) {
    .chat-box {
        width: 100%; /* Take up 100% of the screen width on mobile */
    }
}

/* Media query for desktop */
@media (min-width: 897px) {
    .chat-box {
        width: 50%; /* Take up 50% of the screen width on desktop */
        left: 50%;
        transform: translateX(-50%);
    }
}