.easy-fab-container {
    position: fixed;
    z-index: 9999;
}

.easy-fab-main-button {
    width: 45px;
    height: 45px;
    background-color: #0073aa;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.easy-fab-main-button:hover {
    background-color: #005177;
}

.easy-fab-main-button .dashicons {
    color: #fff;
    font-size: 30px;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.easy-fab-main-button.active .dashicons {
    transform: rotate(45deg);
}

.easy-fab-main-button .fas {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.easy-fab-main-button.active .fas {
    transform: rotate(45deg);
}

/* SVG icon styles */
.easy-fab-main-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.easy-fab-main-button.active svg {
    transform: rotate(45deg);
}

/* Vertical Direction (Default) */
.easy-fab-direction-vertical .easy-fab-items {
    position: absolute;
    bottom: 70px;
    right: 5px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
}

.easy-fab-direction-vertical .easy-fab-item-button:hover {
    transform: translateX(-5px);
}

/* Horizontal Direction */
.easy-fab-direction-horizontal .easy-fab-items {
    position: absolute;
    bottom: 10px;
    right: 70px;
    display: none;
    flex-direction: row-reverse;
    align-items: center;
}

.easy-fab-direction-horizontal .easy-fab-item-button {
    margin-right: 10px;
    margin-bottom: 0;
}

.easy-fab-direction-horizontal .easy-fab-item-button:hover {
    transform: translateY(-5px);
}

.easy-fab-direction-horizontal .easy-fab-item-label {
    margin-right: 0;
    margin-bottom: 10px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.easy-fab-items.active {
    display: flex;
}

.easy-fab-item-button {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    position: relative;
}

.easy-fab-item-button .dashicons {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #333;
    font-size: 20px;
}

.easy-fab-item-label {
    background-color: #f1f1f1;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* Icon Only Mode */
.easy-fab-icon-only .easy-fab-item-label {
    display: none !important;
}