/* =========================
   FLOATING WIDGET WRAPPER
========================= */

#skeepers-floating-widget {
    position: fixed !important;
    bottom: 20px;
    left: 20px;
    z-index: 2147483647;
    font-family: inherit;
}

/* =========================
   TOGGLE BUTTON
========================= */

#skeepers-toggle {
    width: 48px;
    height: 48px;

    background: #ffffff;
    border-radius: 50%;

    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    user-select: none;
}

/* =========================
   PANEL (collapsed by default)
========================= */

#skeepers-panel {
    display: none;

    margin-bottom: 10px;

    background: #fff;
    border-radius: 10px;

    padding: 10px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);

    transform: translateY(10px);
    opacity: 0;

    transition: all 0.2s ease;
}

/* open state */
#skeepers-floating-widget.open #skeepers-panel {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* ensure badge fits */
#skeepers-panel > div {
    width: 140px;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

    #skeepers-floating-widget {
        bottom: 12px !important;
        left: 12px !important;
    }

    #skeepers-toggle {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    #skeepers-panel {
        max-width: 260px;
        padding: 8px;
    }

    #skeepers-panel > div {
        width: 120px !important;
    }
}


