﻿.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255,165,0);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: width 0.3s, height 0.3s;
    z-index: 1000; /* Ensure the button is on top */
}

    .floating-button .button-content {
        font-size: 24px;
    }

.expanded-content {
    display: none;
    position: absolute;
    bottom: 60px; /* Adjust based on your requirement */
    right: 0;
    width: 200px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    color: black;
    z-index: 1000; /* Ensure the expanded content is on top */
}

.floating-button.expanded {
    width: auto;
    height: auto;
    border-radius: 10px;
    padding: 10px;
}

.floating-button.expanded .expanded-content {
    display: block;
}


@media (max-width: 768px) {
    .floating-button {
        display: none;
    }
}