/*
Plugin Name: Custom Floating Button
Description: Styles for the floating button plugin
Version: 1.4
Author: Lina Lamdan
*/

#cfb-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#cfb-main-button {
    width: 160px;
    height: 50px;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

#cfb-main-button:hover {
    background-color: #005177;
}

.cfb-sub-button {
    width: 160px;
    height: 40px;
    background-color: #ff6600;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.cfb-sub-button.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
