/* ---- MOBILE STICKY BANNER ---- */
.mobile-sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dp-white);
    padding: 8px 15px;
    z-index: 9998;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.15);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mobile-sticky-close {
    position: absolute;
    top: -12px;
    right: 8px;
    background: var(--dp-primary);
    color: var(--dp-white);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.mobile-sticky-banner img { max-height: 50px; }

/* ---- BULK SELECT TOOLBAR ---- */
.bulk-toolbar {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 15px;
    display: none;
    align-items: center;
    gap: 10px;
}
.bulk-toolbar.visible { display: flex; }
.bulk-count { font-weight: 700; font-size: 0.9rem; }

/* ---- NOTIFICATION DROPDOWN ---- */
.dropdown-menu .dropdown-item:hover {
    background: #f0f4ff;
}
