/* WRAPPER */
.bsis-wrapper {
    position: relative;
    display: inline-block;
    width: auto;
}

/* MAIN BUTTON */
.bsis-button {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    user-select: none;
}

/* ICON */
.bsis-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.bsis-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.bsis-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.bsis-title {
    font-weight: 600;
    font-size: 15px;
}

.bsis-description {
    font-size: 13px;
    opacity: 0.8;
}

/* TOOLTIP */
.bsis-tooltip {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

.bsis-button:hover .bsis-tooltip {
    opacity: 1;
    top: -36px;
}

/* DROPDOWN TOGGLE */
.bsis-dropdown-toggle {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.6;
}

/* DROPDOWN PANEL */
.bsis-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    display: none;
    z-index: 999;
}

/* DROPDOWN ITEM */
.bsis-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.bsis-dropdown-item:hover {
    background: #f3f4f6;
}

.bsis-dropdown-label {
    font-size: 14px;
    font-weight: 500;
}

/* ANIMATIONS */
.bsis-hover-lift:hover {
    transform: translateY(-3px);
}

.bsis-hover-glow:hover {
    box-shadow: 0 0 12px rgba(109,40,217,0.35) !important;
}

.bsis-click-press:active {
    transform: scale(0.96);
}

/* RIPPLE EFFECT */
.bsis-ripple {
    overflow: hidden;
    position: relative;
}

.bsis-ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.5);
    animation: bsis-ripple-animation 0.6s linear;
}

@keyframes bsis-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* APPEND AREA */
.bsis-append {
    margin-top: 10px;
}
