/* ==========================================
   FIREWORKS EFFECTS ONLY
   Custom CSS for Organizr v2
   ========================================== */

/* ==========================================
   TOGGLE BUTTON
   ========================================== */
#fireworks-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 16px;
    border-radius: 6px;
    background: #ffffff;
    border: 2px solid #ddd;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#fireworks-toggle:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#fireworks-toggle:active {
    transform: scale(0.95);
}

#fireworks-toggle:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    #fireworks-toggle {
        bottom: 20px;
        right: 20px;
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    #fireworks-toggle {
        transition: none !important;
    }
}