.asb-9913-wrapper {
    position: relative;
    width: 100%;
}

.asb-9913-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

/* Ensure no background color escapes from elements within the container */
.asb-9913-btn,
.asb-9913-btn i,
.asb-9913-btn span,
.asb-9913-btn .elementor-icon {
    background: transparent !important;
    background-color: transparent !important;
}

.asb-9913-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none !important;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    line-height: 1;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

.asb-9913-btn i {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asb-9913-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.asb-9913-btn.has-text {
    gap: 8px;
}

.asb-9913-text {
    font-size: 14px;
    font-weight: 500;
}

.asb-9913-btn:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Toast Notification */
.asb-9913-toast {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.asb-9913-toast.show {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
}
