/* Floating Buttons Styles */
.eb-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: self-end;
}

.eb-chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.eb-chat-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #4B4949;
    padding: 4px 15px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: transform 0.2s;
    justify-content: flex-end;
}

.eb-chat-button:hover {
    transform: scale(1.05);
}

.eb-chat-toggle {
    background-color: #6EC1E4;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.eb-chat-toggle:hover {
    background: #263371;
}

.eb-chat-toggle .eb-icon{
    height: 2em;
}

.eb-icon {
    height: 1.5em;
    fill: white;
}

@media (max-width: 767px) {
    .eb-chat-buttons {
        display: none;
        margin-bottom: 10px;
    }

    .eb-floating-buttons.eb-floating-property-page {
        bottom: 80px;
    }
}
