.letscms_pop-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: letscms_pop-fadeIn 0.5s ease-out;
}

.letscms_pop-button {
    width: 60px;
    height: 60px;
    /* background-color: #ff6b6b; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.letscms_pop-button:hover {
    transform: scale(1.05);
    /* background-color: #ff5252; */
}

.letscms_pop-button i {
    color: white;
    font-size: 24px;
}

.letscms_pop-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
letscms_pop-menu.a{
    list-style: none;
    text-decoration: none;
}
.letscms_pop-container:hover .letscms_pop-menu:not(.letscms_pop-active) {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.letscms_pop-menu.letscms_pop-active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.letscms_pop-menu-button {
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: white;
}

.letscms_pop-admin-button {
    background-color: #4CAF50;
}

.letscms_pop-admin-button:hover {
    background-color: #3e8e41;
}

.letscms_pop-buy-button {
    background-color: #2196F3;
}

.letscms_pop-buy-button:hover {
    background-color: #0b7dda;
}

@keyframes letscms_pop-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
