#floating-content {
    position: fixed;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #67b557;
}

#floating-content.bottom-right {
    bottom: 20px;
    right: 20px;
}

#floating-content.bottom-left {
    bottom: 20px;
    left: 20px;
}

#floating-content.top-right {
    top: 20px;
    right: 20px;
}

#floating-content.top-left {
    top: 20px;
    left: 20px;
}

.tab-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5px;
    background-color: #67b557;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.tab-button {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: #67b557;
    border: 1px solid #ccc;
}

.tab-button.active {
    background-color: #6452a1;
}

#floating-content button {
    background: none;
    border: none;
    color: #ffff;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    padding: 10px;
}

.tab-button.active {
    background-color: #6452a1; /* Style the active tab button */
}
#openFloatingContent {
    background-color: #67b557; /* Button background color */
    color: white; /* Button text color */
    padding: 10px 20px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor to pointer on hover */
    font-size: 16px; /* Text size */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

#openFloatingContent:hover {
    background-color: #4e8c41; /* Darken color on hover */
}
#openFloatingContent {
    position: fixed; /* Keep the button fixed in a spot */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
}
