/* 
 * ELEVEX Floating Dark Bulk Action Bar
 * Styled according to design specifications
 */

.floating-bulk-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
    background: rgba(30, 34, 43, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 6px 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    max-width: 92vw;
    overflow-x: auto;
    white-space: nowrap;
}

.floating-bulk-bar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-bulk-bar .bulk-btn {
    background: transparent;
    border: none;
    color: #e4e4e7;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.floating-bulk-bar .bulk-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.floating-bulk-bar .bulk-btn.btn-danger-hover:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

.floating-bulk-bar .bulk-btn.btn-success-hover:hover {
    background: rgba(34, 197, 94, 0.25);
    color: #86efac;
}

.floating-bulk-bar .bulk-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 4px;
    flex-shrink: 0;
}

.floating-bulk-bar .bulk-counter {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.floating-bulk-bar .bulk-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #9ca3af;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    margin-left: 4px;
}

.floating-bulk-bar .bulk-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
