.efl-widget-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.efl-widget-item + .efl-widget-item {
    margin-top: var(--efl-item-gap, 8px);
}

.efl-widget-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.efl-widget-button {
    width: var(--efl-icon-size-desktop, 40px);
    height: var(--efl-icon-size-desktop, 40px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    overflow: hidden;
}

.efl-widget-icon-img {
    display: block;
    max-width: 70%;
    max-height: 70%;
}

.efl-widget-button-youtube {
    background-color: var(--efl-bg-youtube, #ff0000);
}

.efl-widget-button-discord {
    background-color: var(--efl-bg-discord, #5865f2);
}

.efl-widget-button-coffee {
    background-color: var(--efl-bg-coffee, #05a862);
}

.efl-widget-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    margin-right: 8px;
    background-color: var(--efl-bg-coffee, #05a862);
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.efl-widget-label-hidden {
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .efl-widget-button {
        width: var(--efl-icon-size-mobile, 40px);
        height: var(--efl-icon-size-mobile, 40px);
    }
}
